UNPKG

349 BJavaScriptView Raw
1module.exports = {
2 restoreMocks: true,
3 clearMocks: true,
4 // collectCoverage: true,
5 collectCoverageFrom: [
6 "lib/**/*.js",
7 "!**/node_modules/**",
8 ],
9 coverageDirectory: "coverage",
10 /*
11 coverageThreshold: {
12 global: {
13 branches: 100,
14 functions: 100,
15 lines: 100,
16 statements: 100,
17 },
18 },
19 */
20 testRegex: /\.test\.jsx?/.source,
21};