Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updates to setup of Stryker Mutator #272

Merged
merged 4 commits into from
Mar 2, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"scripts": {
"jest": "jest",
"lint": "eslint .",
"run-stryker": "stryker run",
"stryker": "stryker run",
"test": "npm run lint && npm run jest"
},
"repository": {
Expand Down
16 changes: 14 additions & 2 deletions stryker.conf.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,21 @@
module.exports = config => {
config.set({
mutator: 'javascript',
mutate: ['lib/**/*.js', 'templates/**/*.js', 'unsupported-platforms/**/*.js'],
mutate: [
// TBD there seems to be an issue with
// Stryker mutation testing on
// bin/*.js (...)
// 'bin/**/*.js',
'lib/**/*.js',
'templates/**/*.js',
'unsupported-platforms/**/*.js'
],
packageManager: 'yarn',
reporters: ['html', 'clear-text', 'progress'],
reporters: [
'html',
'clear-text',
'progress'
],
testRunner: 'jest',
transpilers: [],
coverageAnalysis: 'off'
Expand Down