Skip to content

Commit

Permalink
Improve configurations #58
Browse files Browse the repository at this point in the history
  • Loading branch information
mapeveri committed Nov 25, 2023
1 parent c410d3b commit d6fa144
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@
# stryker temp files
.stryker-tmp
/reports/
stryker.log
32 changes: 32 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
"eslint-plugin-prettier": "^4.2.1",
"faker": "^5.5.3",
"jest": "^29.7.0",
"jest-extended": "^4.0.2",
"nodemon": "^3.0.1",
"prettier": "2.8.8",
"source-map-support": "^0.5.21",
Expand Down
9 changes: 7 additions & 2 deletions stryker.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,13 @@
"testRunner": "jest",
"testRunner_comment": "Take a look at (missing 'homepage' URL in package.json) for information about the jest plugin.",
"mutate": [
"src/*/application/**/*.ts",
"test/*/application/**/*.test.ts"
"src/*/domain/**/*.ts",
"src/*/application/**/*.ts"
],
"mutator": {
"excludedMutations": [
"BlockStatement"
]
},
"coverageAnalysis": "perTest"
}

0 comments on commit d6fa144

Please sign in to comment.