Skip to content

Commit

Permalink
increase uncovered statement covererage threshold
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrick McElhaney committed May 23, 2023
1 parent d2a3023 commit f8d90a4
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions jest.config.json
@@ -1,17 +1,20 @@

{
"testEnvironment": "node",
"collectCoverage": true,

"collectCoverageFrom": ["src/**/*.{js,jsx,ts,tsx}", "!**/node_modules/**", "!**/*.d.ts"],
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}",
"!**/node_modules/**",
"!**/*.d.ts"
],
"coverageProvider": "v8",

"coverageThreshold": {
"global": {
"branches": 45,
"functions": 49,
"lines": 54,
"statements": -300
"statements": -301
}
}
}

0 comments on commit f8d90a4

Please sign in to comment.