Introduce mutation testing.
This commit is contained in:
parent
237f5c302b
commit
4494e56dc5
3 changed files with 360 additions and 16 deletions
11
stryker.conf.js
Normal file
11
stryker.conf.js
Normal 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"]
|
||||
});
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue