@stryker-mutator/core
Version:
The extendable JavaScript mutation testing framework
21 lines • 690 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',
},
};
async createConfig() {
return { config: this.config, guideUrl, dependencies: this.dependencies };
}
}
//# sourceMappingURL=react-initializer.js.map