stryker-mocha-frameworkdeprecated

A plugin to use the mocha test framework in Stryker, the JavaScript mutation testing framework

Usage no npm install needed!

<script type="module">
  import strykerMochaFramework from 'https://cdn.skypack.dev/stryker-mocha-framework';
</script>

README

Build Status NPM Node version Gitter

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-mocha-framework locally within your project folder, like so:

npm i --save-dev stryker-mocha-framework

Peer dependencies

The stryker-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-api
  • 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 config file:

// Stryker.conf.js
module.exports = function (config) {
    config.set({
        ...
        testFramework: 'mocha',
        coverageAnalysis: 'perTest'
        ...
    });
}