-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjest.config.json
25 lines (25 loc) · 1.09 KB
/
jest.config.json
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
{
"coverageReporters": [
"json"
],
"preset": "react-native",
"setupFiles": [],
"setupFilesAfterEnv": [
"@testing-library/jest-native/extend-expect"
],
"cacheDirectory": "./cache/jest",
"modulePathIgnorePatterns": [
"<rootDir>/node_modules",
"<rootDir>/lib/",
"<rootDir>/dist/"
],
"watchPathIgnorePatterns": [
"__fixtures__\\/[^/]+\\/(output|error)\\.js"
],
"transform": {
".+\\.(css|styl|less|sass|scss|png|jpg|ttf|woff|woff2)$": "jest-transform-stub"
},
"transformIgnorePatterns": [
"node_modules/(?!(@react-native|react-native|react-native-super-grid|react-native-vector-icons|react-native-web-hooks|react-native-actions-sheet|@expo/vector-icons|expo-font|react-native-iphone-x-helper|react-native-super-grid|@bambooapp/*)/)"
]
}