stryker-baseline-reporter
v1.0.3
Published
Report improvement (or retrogression) on your mutation score with Stryker
Downloads
57
Maintainers
Readme
A baseline reporter for the excellent JavaScript mutation testing framework Stryker.
It's just that.
Store a baseline file after a test run and this reporter tells when there are new mutants on subsequent run.
Installation
npm i --save-dev stryker-baseline-reporter
stryker.conf.js:
module.exports = function (config) {
config.set({
reporter: ['clear-text', 'progress', 'baseline'],
});
}
Run!
Note!
As of writing there is an issue with stryker where test runs can be inconsistent. Of course this is terrible for this reporter because it will impact the outcome.