forked from sendbird/cc-plugin-codex
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstryker.config.mjs
More file actions
35 lines (35 loc) · 812 Bytes
/
Copy pathstryker.config.mjs
File metadata and controls
35 lines (35 loc) · 812 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
28
29
30
31
32
33
34
35
export default {
testRunner: "command",
commandRunner: {
command: "npm run test:mutation:unit",
},
coverageAnalysis: "off",
mutate: [
"scripts/lib/args.mjs",
"scripts/lib/structured-output.mjs",
"scripts/lib/render.mjs",
"scripts/lib/claude-cli.mjs",
],
reporters: ["progress", "clear-text", "html", "json"],
clearTextReporter: {
reportMutants: false,
reportTests: false,
reportScoreTable: true,
allowEmojis: false,
},
thresholds: {
high: 80,
low: 60,
break: null,
},
incremental: true,
incrementalFile: "reports/stryker-incremental.json",
htmlReporter: {
fileName: "reports/mutation/mutation.html",
},
jsonReporter: {
fileName: "reports/mutation/mutation.json",
},
tempDirName: ".stryker-tmp",
cleanTempDir: true,
};