-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathstryker.conf.json
More file actions
44 lines (44 loc) · 1.02 KB
/
stryker.conf.json
File metadata and controls
44 lines (44 loc) · 1.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
{
"$schema": "./node_modules/@stryker-mutator/core/schema/stryker-schema.json",
"testRunner": "command",
"commandRunner": {
"command": "npx vitest run tests/unit/visuals/*.test.ts"
},
"checkers": [],
"ignorePatterns": [
"vendor/**",
"dist/**",
"templates/**",
"connectors/**",
".venv-yt-dlp/**",
".cache/**",
".tmp/**",
"coverage/**",
"report/**",
"reports/**",
"output/**",
"test-e2e-output/**"
],
"disableTypeChecks": "src/**/*.ts",
"reporters": ["clear-text", "progress", "html"],
"coverageAnalysis": "off",
"thresholds": {
"high": 90,
"low": 85,
"break": 80
},
"mutator": {
"excludedMutations": ["StringLiteral", "ObjectLiteral"]
},
"mutate": [
"src/visuals/keywords.ts",
"src/visuals/duration.ts",
"src/audio/alignment.ts",
"src/render/captions/timing.ts",
"src/render/captions/chunking.ts",
"src/score/sync-rater.ts"
],
"tempDirName": ".stryker-tmp",
"timeoutMS": 180000,
"tsconfigFile": "tsconfig.json"
}