mirror of
https://github.com/callstack/react-native-testing-library.git
synced 2026-09-18 23:09:04 +08:00
10 lines
374 B
JavaScript
10 lines
374 B
JavaScript
module.exports = {
|
|
preset: './jest-preset',
|
|
setupFilesAfterEnv: ['./jest-setup.ts'],
|
|
testPathIgnorePatterns: ['build/', 'examples/', 'experiments-app/', 'timer-utils'],
|
|
testTimeout: 60000,
|
|
transformIgnorePatterns: ['/node_modules/(?!(@react-native|react-native)/).*/'],
|
|
snapshotSerializers: ['@relmify/jest-serializer-strip-ansi/always'],
|
|
clearMocks: true,
|
|
};
|