mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
3cc67fed36
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/48178 Changelog: [internal] Adds a new mode for Fantom to run tests with dev-mode bytecode. Right now the modes were only dev (development with source code) or opt (optimized bytecode). Reviewed By: rshest Differential Revision: D66888986 fbshipit-source-id: 34b2566a65d138790e16f8fb5787fd9c2bcde536
18 lines
429 B
JavaScript
18 lines
429 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
|
|
* @fantom_mode dev-bytecode
|
|
*/
|
|
|
|
describe('"@fantom_mode dev-bytecode" in docblock', () => {
|
|
it('should use development builds', () => {
|
|
expect(__DEV__).toBe(true);
|
|
});
|
|
});
|