mirror of
https://github.com/facebook/react-native.git
synced 2024-11-21 22:10:14 +00:00
0376aa4856
Summary:
Like discussed in https://github.com/react-native-community/discussions-and-proposals/issues/509, RN should override the default `node` and `node-addons` conditions.
You might consider supporting (or just setting) [`customExportConditions`](4670d3be0d/packages/jest-environment-node/src/index.ts (L187-L189)
) instead, but the default of the node env should be overwritten 🙂
## Changelog
<!-- Help reviewers and the release process by writing your own changelog entry. For an example, see:
https://reactnative.dev/contributing/changelogs-in-pull-requests
-->
[General] [Changed] - use `'react-native'` export conditions in Jest environment
Pull Request resolved: https://github.com/facebook/react-native/pull/35203
Test Plan: Green CI?
Reviewed By: lunaleaps
Differential Revision: D41081783
Pulled By: jacdebug
fbshipit-source-id: 844c70d92a58c5432ba5b9e5e99c8f50045ef8ac
19 lines
403 B
JavaScript
19 lines
403 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 NodeEnv = require('jest-environment-node').TestEnvironment;
|
|
|
|
module.exports = class ReactNativeEnv extends NodeEnv {
|
|
exportConditions() {
|
|
return ['react-native'];
|
|
}
|
|
};
|