mirror of
https://github.com/callstack/react-native-testing-library.git
synced 2026-09-18 23:09:04 +08:00
10 lines
324 B
JavaScript
10 lines
324 B
JavaScript
module.exports = {
|
|
preset: '@react-native/jest-preset',
|
|
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json'],
|
|
setupFilesAfterEnv: ['./jest-setup.ts'],
|
|
testMatch: ['**/*.test.{ts,tsx}'],
|
|
transformIgnorePatterns: [
|
|
'node_modules/(?!(jest-)?react-native|@react-native(-community)?|react-strict-dom)',
|
|
],
|
|
};
|