-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstryker.config.json
More file actions
59 lines (59 loc) · 1.67 KB
/
stryker.config.json
File metadata and controls
59 lines (59 loc) · 1.67 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
{
"$schema": "./node_modules/@stryker-mutator/core/schema/stryker-schema.json",
"testRunner": "vitest",
"checkers": ["typescript"],
"reporters": ["clear-text", "html", "json", "progress"],
"ignorePatterns": [
"src-tauri/target/**",
"coverage/**",
"dist/**",
"output/**",
"reports/mutation/**",
"test-results/**",
"var/**"
],
"htmlReporter": {
"fileName": "reports/mutation/js/index.html"
},
"jsonReporter": {
"fileName": "reports/mutation/js/mutation.json"
},
"mutate": [
"src/**/*.{ts,tsx}",
"!src/**/*.d.ts",
"!src/**/*.test.ts",
"!src/**/*.test.tsx",
"!src/**/*fixtures.ts",
"!src/assets/**",
"!src/test/**",
"!src/lib/types/**",
"!src/components/intelligence/workbench/index.ts",
"!src/components/intelligence/workbench/review-surface.tsx",
"!src/components/review/index.ts",
"!src/lib/core-intelligence/api.ts",
"!src/lib/core-intelligence/index.ts",
"!src/lib/core-intelligence/api/index.ts",
"!src/lib/core-intelligence/api/overview.ts",
"!src/lib/core-intelligence/types*.ts",
"!src/lib/i18n.ts",
"!src/lib/i18n/catalog.ts",
"!src/lib/intelligence.ts",
"!src/pages/explorer/types.ts",
"!src/pages/intelligence/promoted-entity-routes.tsx",
"!src/pages/intelligence/sections/secondary-sections.tsx",
"!src/**/test-helpers.ts",
"!src/**/test-helpers.tsx"
],
"coverageAnalysis": "perTest",
"disableTypeChecks": "src/**/*.{ts,tsx}",
"allowConsoleColors": true,
"tempDirName": "reports/mutation/.stryker-tmp",
"thresholds": {
"high": 100,
"low": 100,
"break": 100
},
"vitest": {
"configFile": "vitest.config.ts"
}
}