mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
81fbd18410
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/48143 Changelog: [internal] Just a small cleanup to move `jest/integration/*` to `packages/react-native-fantom`, so everything related to Fantom (config, runner, runtime, etc.) is in the same directory. Reviewed By: javache Differential Revision: D66874763 fbshipit-source-id: 8b87d7320c7704f7ce6cd58761508193784f5ce2
19 lines
472 B
JavaScript
19 lines
472 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
|
|
*/
|
|
|
|
/**
|
|
* This is just an entrypoint to warm up the Metro cache before the tests run.
|
|
*/
|
|
|
|
import 'react-native/Libraries/Core/InitializeCore.js';
|
|
import '@react-native/fantom/src/__tests__/Fantom-itest';
|
|
import './setup';
|