-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathcoverage.config.json
More file actions
81 lines (81 loc) · 2.02 KB
/
Copy pathcoverage.config.json
File metadata and controls
81 lines (81 loc) · 2.02 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"packages": {
"apps/api": {
"thresholds": {
"lines": 0,
"statements": 0,
"functions": 0,
"branches": 0
},
"include": ["src/**/*.ts"],
"exclude": ["src/**/*.test.ts", "src/**/*.spec.ts", "e2e/**"],
"testFramework": "vitest"
},
"apps/comps": {
"thresholds": {
"lines": 0,
"statements": 0,
"functions": 0,
"branches": 0
},
"include": ["components/**/*.tsx", "hooks/**/*.ts", "lib/**/*.ts"],
"exclude": ["**/*.test.tsx", "**/*.test.ts"],
"testFramework": "vitest"
},
"packages/conversions": {
"thresholds": {
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100
},
"include": ["src/**/*.ts"],
"exclude": ["src/**/*.test.ts", "src/**/*.spec.ts"],
"testFramework": "vitest"
},
"packages/db": {
"thresholds": {
"lines": 0,
"statements": 0,
"functions": 10,
"branches": 10
},
"include": ["src/**/*.ts"],
"exclude": ["src/**/*.test.ts", "src/**/*.spec.ts"],
"testFramework": "vitest"
},
"packages/rewards": {
"thresholds": {
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100
},
"include": ["src/**/*.ts"],
"exclude": ["src/**/*.test.ts", "src/**/*.spec.ts"],
"testFramework": "vitest"
},
"packages/services": {
"thresholds": {
"lines": 30,
"statements": 30,
"functions": 60,
"branches": 70
},
"include": ["src/**/*.ts"],
"exclude": ["src/**/*.test.ts", "src/**/*.spec.ts"],
"testFramework": "vitest"
},
"packages/staking-contracts": {
"thresholds": {
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100
},
"include": ["src/**/*.ts"],
"exclude": ["src/**/*.test.ts", "src/**/*.spec.ts", "contracts/**/*"],
"testFramework": "vitest"
}
}
}