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.
- Create a custom
Reporter
- Create a
TestSelector
for a test framework - Create a
TestRunner
to bridge the gap between your test runner and Stryker - Create a custom way of configuring Stryker by creating a
ConfigWriter
All extension points work in the same basic way.
- Create a
constructor function
(or class
) - Register the
constructor function
to the correct Factory
.
More info comming soon.