-
Notifications
You must be signed in to change notification settings - Fork 612
/
.jest.config.js
41 lines (38 loc) · 1.16 KB
/
.jest.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
const libDir = process.env.LIB_DIR;
const { defaults: tsjPreset } = require('ts-jest/presets');
const transformPackages = [
'@react-native',
'react-native',
'react-native-modal-popover',
'react-native-collapsible',
'@bang88/react-native-ultimate-listview',
'@react-native-community',
'react-native-gesture-handler',
'react-native-reanimated'
];
module.exports = {
"preset": "react-native",
"setupFilesAfterEnv": ["@testing-library/jest-native/extend-expect"],
"setupFiles": ["./jestSetup.js"],
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json'],
testPathIgnorePatterns: ['/node_modules/', '_site', 'site'],
transform: {
...tsjPreset.transform,
'^.+\\.js$': '<rootDir>/node_modules/react-native/jest/preprocessor.js',
'\\.png': '<rootDir>/tests/imageStub.js',
},
testRegex: libDir === 'dist' ? 'demo\\.test\\.js$' : '.*\\.test\\.js$',
collectCoverageFrom: [
'components/**/*.{ts,tsx}',
'!components/*/style/*.{ts,tsx}',
],
transformIgnorePatterns: [
`node_modules/(?!(${transformPackages.join('|')})/)`,
],
globals: {
'ts-jest': {
babelConfig: true,
tsConfig: 'tsconfig.test.json',
},
},
};