-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstryker.conf.json
40 lines (40 loc) · 1.12 KB
/
stryker.conf.json
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
38
39
40
{
"$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.",
"packageManager": "npm",
"reporters": [
"json",
"html",
"clear-text",
"progress",
"dashboard"
],
"checkers": [
"typescript"
],
"tsconfigFile": "tsconfig.json",
"testRunner": "jest",
"tempDirName": ".stryker-tmp",
"testRunner_comment": "Take a look at https://stryker-mutator.io/docs/stryker-js/jest-runner for information about the jest plugin.",
"jest": {
"projectType": "custom",
"configFile": "jestconfig.json",
"enableFindRelatedTests": false
},
"thresholds": {
"high": 80,
"low": 70,
"break": 75
},
"mutate": [
"src/index.ts"
],
"disableTypeChecks": "src/**/*.{js,ts,jsx,tsx,html,vue}",
"dashboard": {
"project": "github.com/jojoee/range-overlap",
"version": "main",
"baseUrl": "https://dashboard.stryker-mutator.io/api/reports",
"reportType": "full"
},
"coverageAnalysis": "perTest"
}