Skip to content

Commit 0538727

Browse files
committed
Add coverageThreshold to jest.config.js
1 parent 9ab6c50 commit 0538727

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

jest.config.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,14 @@ module.exports = {
88
collectCoverage: true,
99
coverageDirectory: 'coverage',
1010
coverageProvider: 'v8',
11+
coverageThreshold: {
12+
global: {
13+
branches: 100,
14+
functions: 100,
15+
lines: 100,
16+
statements: 100,
17+
},
18+
},
1119
globals: {
1220
PropertiesService: {},
1321
SpreadsheetApp: {},

0 commit comments

Comments
 (0)