We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2e8361 commit c2c72a9Copy full SHA for c2c72a9
jest.config.js
@@ -8,7 +8,17 @@ const {
8
module.exports = {
9
collectCoverageFrom,
10
coveragePathIgnorePatterns: [...coveragePathIgnorePatterns, '/__tests__/'],
11
- coverageThreshold,
+ coverageThreshold: {
12
+ ...coverageThreshold,
13
+ // full coverage across the build matrix (Node.js versions) but not in a single job
14
+ // minimum coverage of jobs using different Node.js version
15
+ './src/waitFor.ts': {
16
+ branches: 96.77,
17
+ functions: 100,
18
+ lines: 97.95,
19
+ statements: 98,
20
+ },
21
22
watchPlugins: [
23
...watchPlugins,
24
require.resolve('jest-watch-select-projects'),
0 commit comments