stryker-javascript-mutatordeprecated

A plugin for javascript projects using Stryker

Usage no npm install needed!

<script type="module">
  import strykerJavascriptMutator from 'https://cdn.skypack.dev/stryker-javascript-mutator';
</script>

README

Build Status NPM Node version Gitter BCH compliance

Stryker

Stryker JavaScript mutator

A mutator that supports JavaScript for Stryker, the JavaScript Mutation testing framework. This plugin does not transpile any code. The code that the stryker-javascript-mutator gets should be executable in your environment (i.e. the stryker-javascript-mutator does not add support for Babel projects).

Quickstart

First, install Stryker itself (you can follow the quickstart on the website)

Next, install this package:

npm install --save-dev stryker-javascript-mutator

Now open up your stryker.conf.js file and add the following components:

mutator: 'javascript',

Now give it a go:

$ stryker run

JavaScript Mutator

The JavaScript Mutator is a plugin to mutate JavaScript code. This is done using Babel without any plugins.

See test code to know which mutations are supported.