mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/48123 Changelog: [internal] This verifies that the modes specified in the pragmas are applied correctly. Reviewed By: andrewdacenko Differential Revision: D66822377 fbshipit-source-id: 420f21f171c5d356ab91b49f7a33345386f6f0c0
17 lines
390 B
JavaScript
17 lines
390 B
JavaScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @flow strict-local
|
|
* @format
|
|
* @oncall react_native
|
|
*/
|
|
|
|
describe('no "@fantom_mode" in docblock', () => {
|
|
it('should use development builds', () => {
|
|
expect(__DEV__).toBe(true);
|
|
});
|
|
});
|