Skip to content

Commit

Permalink
chore: Update jest.config.js
Browse files Browse the repository at this point in the history
lowering the test thresholds to something more reasonable.
  • Loading branch information
amuramoto committed Jun 5, 2023
1 parent 6fe1903 commit 559dc7e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ module.exports = {
collectCoverage: true,
coverageThreshold: {
global: {
branches: 100,
functions: 100,
lines: 100,
statements: 100,
branches: 90,
functions: 90,
lines: 90,
statements: 90,
},
},
};

0 comments on commit 559dc7e

Please sign in to comment.