-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjest.config.js
40 lines (31 loc) · 938 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
const expoPreset = require("jest-expo/jest-preset");
expoPreset.transform = {
...expoPreset.transform,
"^.+\\.{ts,tsx}$": "ts-jest"
};
expoPreset.testMatch = [
"**/__tests__/**/*.{js,ts,tsx}",
"**/?(*.)+(spec|test).{js,ts,tsx}"
];
expoPreset.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)"
];
expoPreset.globals = {
"ts-jest": {
tsConfig: {
jsx: "react"
}
}
};
expoPreset.collectCoverageFrom = [
"./{**/,}*.{js,ts,tsx}",
"!./{**/,}*.config.js",
"!./coverage/**",
// Ignore navigation index files, they're mostly 3rd-party glue code and hard to test
"!./screens/{Browse/,Meal/,}index.tsx",
// Same with the main index file.
"!./App.tsx",
// ignore scripts
"!./scripts/**"
];
module.exports = expoPreset;