Skip to content

Commit

Permalink
test: use original coverage thresholds
Browse files Browse the repository at this point in the history
  • Loading branch information
char0n committed Jan 18, 2023
1 parent 72fe8ec commit 588d29b
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions config/jest/jest.unit.coverage.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,10 @@ module.exports = {
collectCoverageFrom: ['src/**/*.js'],
coverageThreshold: {
'./src/': {
branches: 10,
functions: 10,
lines: 10,
statements: 10,
// branches: 87,
// functions: 91,
// lines: 90,
// statements: 90,
branches: 86,
functions: 91,
lines: 90,
statements: 89,
},
},
};

0 comments on commit 588d29b

Please sign in to comment.