We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2d12c3f + f81a548 commit ec93808Copy full SHA for ec93808
jest.config.js
@@ -28,14 +28,17 @@ module.exports = {
28
collectCoverageFrom: [
29
'src/**/*.{ts,tsx}',
30
'!src/**/*.d.ts',
31
- '!src/index.ts'
+ '!src/index.ts',
32
+ '!src/examples/**',
33
+ '!src/stories/**',
34
+ '!src/storybook/**'
35
],
- coverageThreshold: {
36
+ coverageThreshold: {
37
global: {
- branches: 80,
- functions: 80,
- lines: 80,
38
- statements: 80,
+ branches: 90,
39
+ functions: 100,
40
+ lines: 100,
41
+ statements: 100,
42
},
43
44
transformIgnorePatterns: [
0 commit comments