mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
86b4acb224
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/34161 This is a follow up to D37648363 (https://github.com/facebook/react-native/commit/64fe67695be3c038414c5ed3e02d487c449702b6) which breaks up `TestBundle.js` into two modules. This enables `TestApps.js` (which defines and exports the set of integration test apps) to be required in the Meta-specific dependency graph without violating our internal naming pattern for JS entry points. `force_include_bundles` is removed from the `js_glob` macro signature. Changelog: [Internal] Reviewed By: motiz88 Differential Revision: D37686883 fbshipit-source-id: 492c13dfcdd76ea8347d4d11c85818e31777c663
16 lines
347 B
JavaScript
16 lines
347 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.
|
|
*
|
|
* @format
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
const {AppRegistry} = require('react-native');
|
|
const TestApps = require('./TestApps');
|
|
|
|
AppRegistry.registerConfig(TestApps);
|