-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstryker.config.json
More file actions
37 lines (37 loc) · 1.08 KB
/
Copy pathstryker.config.json
File metadata and controls
37 lines (37 loc) · 1.08 KB
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
36
37
{
"$schema": "./node_modules/@stryker-mutator/core/schema/stryker-schema.json",
"_comment": "This config was generated using 'stryker init'. Please take a look at: https://stryker-mutator.io/docs/stryker-js/configuration/ for more information.",
"tempDirName": "stryker-tmp",
"packageManager": "pnpm",
"reporters": [
"html",
"clear-text",
"progress",
"json"
],
"checkers": ["typescript"],
"testRunner": "jest",
"testRunner_comment": "Take a look at https://stryker-mutator.io/docs/stryker-js/jest-runner for information about the jest plugin.",
"coverageAnalysis": "perTest",
"plugins": [
"@stryker-mutator/jest-runner",
"@stryker-mutator/typescript-checker"
],
"jest": {
"projectType": "custom",
"configFile": "jest.stryker.config.js",
"enableFindRelatedTests": false
},
"mutate": [
"src/analysers/**/*.ts",
"src/transfer_funcs/**/*.ts",
"src/cfg.ts",
"src/reporting.ts"
],
"htmlReporter": {
"fileName": "reports/stryker/index.html"
},
"jsonReporter": {
"fileName": "reports/stryker/mutation.json"
}
}