Files
SnapOtter/packages/media-engine/stryker.config.json
T

21 lines
608 B
JSON
Raw Normal View History

{
"$schema": "https://raw.githubusercontent.com/stryker-mutator/stryker-js/master/packages/api/schema/stryker-core.json",
"testRunner": "vitest",
"plugins": ["@stryker-mutator/vitest-runner"],
"mutate": ["src/**/*.ts", "!src/index.ts"],
"incremental": true,
"incrementalFile": "reports/stryker-incremental.json",
"reporters": ["html", "clear-text", "progress"],
"htmlReporter": {
"fileName": "reports/mutation/mutation.html"
},
"thresholds": {
"high": 80,
"low": 60,
"break": null
},
"tempDirName": ".stryker-tmp",
"cleanTempDir": "always",
"ignoreStatic": true
}