forked from Smartdevs17/SubTrackr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstryker.backend.conf.json
More file actions
39 lines (39 loc) · 1.01 KB
/
Copy pathstryker.backend.conf.json
File metadata and controls
39 lines (39 loc) · 1.01 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
38
39
{
"$schema": "./node_modules/@stryker-mutator/core/schema/stryker-schema.json",
"schemaVersion": "1.0",
"mutate": [
"backend/**/*.ts",
"!backend/**/*.test.ts",
"!backend/**/*.spec.ts",
"!backend/**/__tests__/**",
"!backend/**/__mocks__/**",
"!backend/**/__fixtures__/**",
"!backend/**/*.d.ts"
],
"testRunner": "jest",
"jest": {
"projectType": "custom",
"configFile": "jest.backend.config.js"
},
"checkers": ["typescript"],
"typescriptChecker": {
"tsconfigFile": "backend/tsconfig.json"
},
"reporters": ["progress", "clear-text", "html", "dashboard"],
"coverageAnalysis": "perTest",
"concurrency": 4,
"thresholds": {
"high": 80,
"low": 60,
"break": 50
},
"tempDirName": ".stryker-backend-tmp",
"cleanTempDir": true,
"dashboard": {
"project": "github.com/Smartdevs17/SubTrackr",
"version": "main",
"module": "backend"
},
"timeoutMS": 60000,
"plugins": ["@stryker-mutator/jest-runner", "@stryker-mutator/typescript-checker"]
}