JSPM

  • Created
  • Published
  • Downloads 249916
  • Score
    100M100P100Q182115F
  • License Apache-2.0

The api for the extendable JavaScript mutation testing framework Stryker

Package Exports

  • @stryker-mutator/api/config
  • @stryker-mutator/api/core
  • @stryker-mutator/api/plugin
  • @stryker-mutator/api/report
  • @stryker-mutator/api/test_runner

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@stryker-mutator/api) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Build Status Gitter

Stryker

Stryker API

This is the repository for maintaining the API of the Stryker JavaScript mutation testing framework. Plugin creators should depend on this API rather than on the main Stryker repository directly.

Extension use cases

You can extend Stryker in a number of ways.

  1. Create your own Mutator
  2. Create a custom Reporter
  3. Create a TestFramework for a test framework
  4. Create a TestRunner to bridge the gap between your test runner and Stryker
  5. Create a custom way of configuring Stryker by creating a ConfigEditor

All extension points work in the same basic way.

  1. Create a constructor function (or class)
  2. Register the constructor function to the correct Factory.

More info comming soon. In the mean time, take a look at the Stryker homepage.