Skip to content

Commit 71af089

Browse files
committed
test: decrease coverage threshold for utils detection
1 parent 401ab97 commit 71af089

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

jest.config.js

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,17 @@ module.exports = {
1111
statements: 100,
1212
},
1313
// TODO drop this custom threshold in v4
14-
"./lib/node-utils.ts": {
14+
'./lib/detect-testing-library-utils.ts': {
1515
branches: 90,
1616
functions: 90,
1717
lines: 90,
1818
statements: 90,
19-
}
19+
},
20+
'./lib/node-utils.ts': {
21+
branches: 90,
22+
functions: 90,
23+
lines: 90,
24+
statements: 90,
25+
},
2026
},
2127
};

0 commit comments

Comments
 (0)