@stryker-mutator/core
Version:
The extendable JavaScript mutation testing framework
23 lines • 771 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 {
constructor() {
this.name = 'create-react-app';
this.dependencies = ['@stryker-mutator/jest-runner'];
this.config = {
testRunner: 'jest',
reporters: ['progress', 'clear-text', 'html'],
coverageAnalysis: 'off',
jest: {
projectType: 'create-react-app',
},
};
}
async createConfig() {
return { config: this.config, guideUrl, dependencies: this.dependencies };
}
}
//# sourceMappingURL=react-initializer.js.map