Skip to content

Commit

Permalink
chore: decrease coverageThreshold in jest.default.config.js
Browse files Browse the repository at this point in the history
  • Loading branch information
ItsSudip committed Dec 20, 2023
1 parent 5028bd9 commit afc9dde
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions jest.default.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ module.exports = {
// An object that configures minimum threshold enforcement for coverage results
coverageThreshold: {
global: {
branches: 60,
functions: 75,
lines: 75,
statements: 75,
branches: 30,
functions: 40,
lines: 50,
statements: 50,
},
},

Expand Down

0 comments on commit afc9dde

Please sign in to comment.