UNPKG

@stryker-mutator/core

Version:

The extendable JavaScript mutation testing framework

22 lines 648 B
const guideUrl = 'https://stryker-mutator.io/docs/stryker-js/guides/vuejs'; /** * More information can be found in the Stryker handbook: * https://stryker-mutator.io/docs/stryker-js/guides/vuejs */ export class VueJsInitializer { constructor() { this.name = 'vue'; this.vitestConf = { testRunner: 'vitest', reporters: ['progress', 'clear-text', 'html'], }; } async createConfig() { return { config: this.vitestConf, dependencies: ['@stryker-mutator/vitest-runner'], guideUrl, }; } } //# sourceMappingURL=vue-js-initializer.js.map