Skip to content

Commit 8af78e9

Browse files
committed
Ignore coverage for now
1 parent dd2a2e6 commit 8af78e9

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

jest.config.js

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
const {jest: jestConfig} = require('kcd-scripts/config')
2+
3+
module.exports = Object.assign(jestConfig, {
4+
coverageThreshold: {
5+
...jestConfig.coverageThreshold,
6+
// full coverage across the build matrix (React 17, 18) but not in a single job
7+
'./src/pure': {
8+
// minimum coverage of jobs using React 17 and 18
9+
branches: 85,
10+
functions: 76,
11+
lines: 81,
12+
statements: 81,
13+
},
14+
},
15+
})

0 commit comments

Comments
 (0)