We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d470fa1 commit 94afab0Copy full SHA for 94afab0
jest.config.js
@@ -25,4 +25,14 @@ module.exports = {
25
// It is reflected in properties such as location.href.
26
// @see: https://github.com/facebook/jest/issues/6769
27
testURL: 'http://localhost/',
28
+
29
+ // @see: https://jestjs.io/docs/en/configuration#coveragethreshold-object
30
+ coverageThreshold: {
31
+ global: {
32
+ statements: 100,
33
+ branches: 95,
34
+ functions: 100,
35
+ lines: 100,
36
+ },
37
38
};
0 commit comments