Introduce mutation testing.

This commit is contained in:
David Braun 2018-08-27 16:34:19 -04:00
parent 237f5c302b
commit 4494e56dc5
No known key found for this signature in database
GPG key ID: 87EC41ADF710B7E2
3 changed files with 360 additions and 16 deletions

11
stryker.conf.js Normal file
View file

@ -0,0 +1,11 @@
module.exports = function(config) {
config.set({
testRunner: "mocha",
mutator: "javascript",
transpilers: [],
reporter: ["clear-text", "progress"],
testFramework: "mocha",
coverageAnalysis: "perTest",
mutate: ["lib/**/*.js"]
});
};