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
69 lines (58 loc) · 1.43 KB
/
Copy pathstryker.backend.conf.json
File metadata and controls
69 lines (58 loc) · 1.43 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"$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",
"!backend/migrations/**",
"!backend/server.ts",
"!backend/server/**"
],
"testRunner": "jest",
"jest": {
"projectType": "custom",
"configFile": "jest.backend.config.js",
"enableFindRelatedTests": true
},
"checkers": ["typescript"],
"typescriptChecker": {
"tsconfigFile": "backend/tsconfig.json"
},
"reporters": ["progress", "clear-text", "html", "json", "dashboard"],
"htmlReporter": {
"fileName": "reports/mutation/backend/mutation.html"
},
"jsonReporter": {
"fileName": "reports/mutation/backend/mutation.json"
},
"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,
"timeoutFactor": 2.0,
"maxTestRunnerReuse": 50,
"ignorePatterns": [
".stryker-backend-tmp",
"node_modules"
],
"plugins": [
"@stryker-mutator/jest-runner",
"@stryker-mutator/typescript-checker"
]
}