Skip to content

Commit

Permalink
Add coverageThreshold to jest.config.js
Browse files Browse the repository at this point in the history
  • Loading branch information
ttsukagoshi committed Feb 8, 2024
1 parent 9ab6c50 commit 0538727
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,14 @@ module.exports = {
collectCoverage: true,
coverageDirectory: 'coverage',
coverageProvider: 'v8',
coverageThreshold: {
global: {
branches: 100,
functions: 100,
lines: 100,
statements: 100,
},
},
globals: {
PropertiesService: {},
SpreadsheetApp: {},
Expand Down

0 comments on commit 0538727

Please sign in to comment.