Skip to content
This repository was archived by the owner on Nov 11, 2024. It is now read-only.

Commit 968dc62

Browse files
thymikeealeclarson
authored andcommitted
Make Jest transform @react-native-community packages by default (#24294)
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: facebook/react-native#24294 Differential Revision: D14748962 Pulled By: cpojer fbshipit-source-id: 36300ee021f03b8c13275a6e0cf28d988ee5beba
1 parent c0beb86 commit 968dc62

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jest-preset.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ module.exports = {
2929
),
3030
},
3131
transformIgnorePatterns: [
32-
'node_modules/(?!(jest-)?react-native|react-clone-referenced-element)',
32+
'node_modules/(?!(jest-)?react-native|@react-native-community|react-clone-referenced-element)',
3333
],
3434
setupFiles: [require.resolve('./jest/setup.js')],
3535
testEnvironment: 'node',

0 commit comments

Comments
 (0)