-
Notifications
You must be signed in to change notification settings - Fork 1
/
stryker.conf.json
32 lines (31 loc) · 911 Bytes
/
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
{
"$schema": "./node_modules/@stryker-mutator/core/schema/stryker-schema.json",
"packageManager": "yarn",
"reporters": ["html", "clear-text", "progress", "dashboard"],
"dashboard": {
"reportType": "full"
},
"jest": {
"configFile": "./jest.config.js",
"enableFindRelatedTests": true,
"projectType": "custom"
},
"mutate": [
"**/src/**/*.ts",
"!**/infra/database/**/*.ts",
"!**/main/**/*.ts",
"**/main/decorators/**/*.ts",
"**/main/middlewares/**/*.ts",
"!**/mocks/**/*.ts",
"!**/errors/**/*.ts",
"!**/presentation/helpers/**/*.ts",
"!**/**/*.spec.ts",
"!**/**/*.test.ts",
"!**/**/index.ts"
],
"testRunner": "jest",
"coverageAnalysis": "perTest",
"checkers": ["typescript"],
"tsconfigFile": "tsconfig.json",
"allowConsoleColors": true
}