We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a4ae5a commit b28e365Copy full SHA for b28e365
jest.config.js
@@ -4,6 +4,14 @@ module.exports = {
4
testMatch: ['**/*.test.ts', '**/*.test.tsx'],
5
collectCoverage: true,
6
collectCoverageFrom: ['src/**/**/*.{ts,tsx}'],
7
+ coverageThreshold: {
8
+ global: {
9
+ branches: 100,
10
+ functions: 100,
11
+ lines: 100,
12
+ statements: 100,
13
+ },
14
15
transform: {
16
'^.+\\.tsx?$': [
17
'ts-jest',
0 commit comments