@stryker-mutator/mocha-framework
v4.0.0
Published
A plugin to use the mocha test framework in Stryker, the JavaScript mutation testing framework
Downloads
26,982
Readme
Stryker Mocha Framework
A plugin to speed up Mocha tests in Stryker, the JavaScript mutation testing framework.
This plugin makes it possible for Stryker to use coverageAnalysis: 'perTest'
, by providing the abstraction to select which individual test(s) to run. You might also be looking for the stryker-mocha-runner, which makes it possible to use the node-based Mocha test runner in stryker.
Install
Install @stryker-mutator/mocha-framework locally within your project folder, like so:
npm i --save-dev @stryker-mutator/mocha-framework
Peer dependencies
The @stryker-mutator/mocha-framework
is a plugin to use mocha
for stryker
as a test framework.
As such, you should make sure you have the correct versions of its dependencies installed:
@stryker-mutator/core
mocha
Configuring
You can either configure the mocha test framework using the command line or by providing it in the stryker.conf.js
file.
This README describes how to use the stryker.conf.js
(or stryker.conf.json
) config file:
// stryker.conf.js
module.exports = {
// ...
testFramework: 'mocha',
coverageAnalysis: 'perTest'
// ...
}