Skip to content

Commit

Permalink
test: Configure stryker jestRunner (WIP, not working)
Browse files Browse the repository at this point in the history
  • Loading branch information
karfau committed Sep 3, 2020
1 parent 039b977 commit b1d3c6b
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions stryker.jest.conf.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"$schema": "./node_modules/@stryker-mutator/core/schema/stryker-schema.json",
"mutator": "javascript",
"packageManager": "npm",
"reporters": [
"html",
"clear-text",
"progress"
],
"testRunner": "jest",
"jestProjectType": "custom",
"jest": {
"enableFindRelatedTests": false,
"config": {
"collectCoverage": false,
"roots": [
"test"
],
"testPathIgnorePatterns": [
"/node_modules/",
"test/helper.js",
"test/parse"
]
}
},
"transpilers": [],
"coverageAnalysis": "off",
"files": [
"test/**/*.test.js", "test/**/*.xml", "test/**/*.html", "test/helper.js", "lib/*.js", "package.json", "jest.config.js"
]
}

0 comments on commit b1d3c6b

Please sign in to comment.