-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstryker.conf.json
More file actions
27 lines (27 loc) · 828 Bytes
/
Copy pathstryker.conf.json
File metadata and controls
27 lines (27 loc) · 828 Bytes
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
{
"$schema": "./node_modules/@stryker-mutator/core/schema/stryker-schema.json",
"_comment": "Manual mutation testing. Not wired into check:fast or check:deep. Scope is intentionally narrow — point it at one pure-logic module at a time. Expect ~30s-2min per run depending on the module's mutant count and test runtime.",
"packageManager": "npm",
"testRunner": "command",
"commandRunner": {
"command": "bun test tests/find-endpoint-model.test.ts"
},
"mutate": [
"src/lib/models/models.ts"
],
"reporters": ["progress", "clear-text", "html"],
"tempDirName": ".stryker-tmp",
"htmlReporter": {
"fileName": "reports/mutation/index.html"
},
"concurrency": 4,
"timeoutMS": 30000,
"ignorePatterns": [
"dist",
"build",
"node_modules",
"shell",
".claude",
"reports"
]
}