-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
according to https://stryker-mutator.io/stryker/quickstart (using npx) with mutation testing limited to `lib/*.js` (`lib/parser/pbxproj.js` not included) and add generated Stryker artifacts to .gitignore
- Loading branch information
Christopher J. Brody
committed
Oct 17, 2019
1 parent
d06078f
commit 09d7616
Showing
3 changed files
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,5 @@ node_modules/* | |
.DS_Store | ||
npm-debug.log | ||
package-lock.json | ||
.stryker-tmp | ||
reports |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
module.exports = function(config) { | ||
config.set({ | ||
mutator: "javascript", | ||
mutate: [ 'lib/*.js' ], | ||
packageManager: "npm", | ||
reporters: ["html", "clear-text", "progress"], | ||
testRunner: "command", | ||
transpilers: [], | ||
coverageAnalysis: "all" | ||
}); | ||
}; |