@stryker-mutator/core
Version:
The extendable JavaScript mutation testing framework
25 lines • 746 B
JavaScript
const guideUrl = 'https://stryker-mutator.io/docs/stryker-js/guides/react';
/**
* More information can be found in the Stryker handbook:
* https://stryker-mutator.io/docs/stryker-js/guides/react
*/
export class ReactInitializer {
name = 'create-react-app';
dependencies = ['@stryker-mutator/jest-runner'];
config = {
testRunner: 'jest',
reporters: ['progress', 'clear-text', 'html'],
coverageAnalysis: 'off',
jest: {
projectType: 'create-react-app',
},
};
createConfig() {
return Promise.resolve({
config: this.config,
guideUrl,
dependencies: this.dependencies,
});
}
}
//# sourceMappingURL=react-initializer.js.map