mirror of
https://github.com/status-im/react-native.git
synced 2025-02-23 14:48:25 +00:00
Summary: Currently, `react-native` Jest preset will not automatically transpile extracted Lean Core modules (all under `react-native-community` org), so maintainers will likely need to update their docs on how to do that (it's a common pain in RN testing story). We can make it easier for users and maintainers by adding RNC modules to the `transformIgnorePatterns` whitelist we have in Jest preset. Some of them are not necessary to transpile, but I'd say it's a small sacrifice to make (having first test run possibly slower) for having less friction around migrating to extracted modules. [General] [Added] - make Jest transform react-native-community/ packages by default Pull Request resolved: https://github.com/facebook/react-native/pull/24294 Differential Revision: D14748962 Pulled By: cpojer fbshipit-source-id: 36300ee021f03b8c13275a6e0cf28d988ee5beba
37 lines
960 B
JavaScript
37 lines
960 B
JavaScript
/**
|
|
* Copyright (c) Facebook, Inc. and its 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 dir = __dirname;
|
|
|
|
module.exports = {
|
|
haste: {
|
|
defaultPlatform: 'ios',
|
|
platforms: ['android', 'ios', 'native'],
|
|
hasteImplModulePath: require.resolve('./jest/hasteImpl.js'),
|
|
providesModuleNodeModules: ['react-native'],
|
|
},
|
|
moduleNameMapper: {
|
|
'^React$': require.resolve('react'),
|
|
},
|
|
modulePathIgnorePatterns: [`${dir}/Libraries/react-native/`],
|
|
transform: {
|
|
'^.+\\.(js|ts|tsx)$': 'babel-jest',
|
|
'^.+\\.(bmp|gif|jpg|jpeg|mp4|png|psd|svg|webp)$': require.resolve(
|
|
'./jest/assetFileTransformer.js',
|
|
),
|
|
},
|
|
transformIgnorePatterns: [
|
|
'node_modules/(?!(jest-)?react-native|@react-native-community)',
|
|
],
|
|
setupFiles: [require.resolve('./jest/setup.js')],
|
|
testEnvironment: 'node',
|
|
};
|