Skip to content

Commit

Permalink
Merge pull request #106 from zama-ai/lowerCoverage
Browse files Browse the repository at this point in the history
chore: lower threshold for jest coverage
  • Loading branch information
jatZama authored Oct 18, 2024
2 parents d887c4e + 19dc025 commit 3e4be5b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions jest.config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ module.exports = {
transformIgnorePatterns: ['/node_modules/'],
coverageThreshold: {
global: {
branches: 60,
functions: 70,
lines: 70,
branches: 50,
functions: 60,
lines: 60,
},
},
};

0 comments on commit 3e4be5b

Please sign in to comment.