mirror of
https://github.com/callstack/react-native-testing-library.git
synced 2026-09-18 23:09:04 +08:00
3af4b8c867
* refactor: rename files to match convention * chore: refactor more * chore: fix tests
17 lines
414 B
JavaScript
17 lines
414 B
JavaScript
module.exports = {
|
|
preset: './jest-preset',
|
|
setupFilesAfterEnv: ['./jest-setup.ts'],
|
|
testPathIgnorePatterns: [
|
|
'timer-utils',
|
|
'examples/',
|
|
'experiments-app/',
|
|
'experiments-rtl/',
|
|
],
|
|
testTimeout: 60000,
|
|
transformIgnorePatterns: [
|
|
'/node_modules/(?!(@react-native|react-native)/).*/',
|
|
],
|
|
snapshotSerializers: ['@relmify/jest-serializer-strip-ansi/always'],
|
|
clearMocks: true,
|
|
};
|