29 lines
695 B
JSON
29 lines
695 B
JSON
{
|
|
"$schema": "./node_modules/@stryker-mutator/core/schema/stryker-schema.json",
|
|
"testRunner": "vitest",
|
|
"coverageAnalysis": "perTest",
|
|
"mutate": [
|
|
"bin/utils/domainValidator.ts",
|
|
"bin/utils/config.ts",
|
|
"bin/utils/uploadLimits.ts",
|
|
"bin/utils/apiClient.ts",
|
|
"bin/utils/cliError.ts",
|
|
"bin/utils/history.ts",
|
|
"bin/utils/pinmeApi.ts",
|
|
"bin/utils/webLogin.ts",
|
|
"bin/services/uploadService.ts"
|
|
],
|
|
"vitest": {
|
|
"configFile": "vitest.mutation.config.ts"
|
|
},
|
|
"thresholds": {
|
|
"high": 80,
|
|
"low": 60,
|
|
"break": 76
|
|
},
|
|
"reporters": ["progress", "clear-text", "html"],
|
|
"htmlReporter": {
|
|
"fileName": "reports/mutation/index.html"
|
|
}
|
|
}
|