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

14 lines
577 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/types.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",
"ignoreStatic": true
}