-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjest.config.js
40 lines (40 loc) · 895 Bytes
/
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
// jest.config.js
// Sync object
module.exports = {
testEnvironment: "jsdom",
preset: "jest-expo",
globals: {
"ts-jest": {
tsconfig: {
jsx: "react"
}
}
},
transform: {
"^.+\\.js$": "<rootDir>/node_modules/react-native/jest/preprocessor.js",
"^.+\\.tsx?$": "ts-jest"
},
testMatch: [
"**/?(*.)+(spec|test).ts?(x)"
],
collectCoverageFrom: [
"**/*.{ts,tsx}",
"!**/coverage/**",
"!**/node_modules/**",
"!**/babel.config.js",
"!**/jest.setup.js"
],
moduleFileExtensions: [
"js",
"ts",
"tsx"
],
transformIgnorePatterns: [
"node_modules/(?!(jest-)?react-native|react-clone-referenced-element|@react-native-community|expo(nent)?|@expo(nent)?/.*|react-navigation|@react-navigation/.*|@unimodules/.*|sentry-expo|native-base)"
],
coverageReporters: [
"json-summary",
"text",
"lcov"
]
};