forked from nexoraorg/chenaikit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcoverage.config.js
More file actions
56 lines (56 loc) · 1.03 KB
/
Copy pathcoverage.config.js
File metadata and controls
56 lines (56 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
module.exports = {
collectCoverageFrom: [
'packages/core/src/**/*.{ts,tsx}',
'backend/src/**/*.{ts,tsx}',
'frontend/src/**/*.{ts,tsx}',
'!**/*.d.ts',
'!**/__tests__/**',
'!**/node_modules/**',
'!**/coverage/**',
],
coverageDirectory: 'coverage',
coverageReporters: [
'text',
'text-summary',
'html',
'lcov',
'json'
],
coverageThresholds: {
global: {
branches: 80,
functions: 80,
lines: 80,
statements: 80
},
'./packages/core/src/': {
branches: 85,
functions: 85,
lines: 85,
statements: 85
},
'./backend/src/': {
branches: 75,
functions: 75,
lines: 75,
statements: 75
},
'./frontend/src/': {
branches: 70,
functions: 70,
lines: 70,
statements: 70
}
},
testMatch: [
'**/__tests__/**/*.test.{ts,tsx}',
'**/?(*.)+(spec|test).{ts,tsx}'
],
testPathIgnorePatterns: [
'/node_modules/',
'/coverage/',
'/dist/',
'/build/'
],
verbose: true,
};