UNPKG

@stryker-mutator/jest-runner

Version:

A plugin to use the jest test runner and framework in Stryker, the JavaScript mutation testing framework

22 lines 634 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.state = void 0; class State { instrumenterContext; testFilesWithStrykerEnvironment = new Set(); coverageAnalysis; jestEnvironment; resolveFromDirectory; constructor() { this.clear(); } clear() { this.testFilesWithStrykerEnvironment.clear(); this.instrumenterContext = {}; this.coverageAnalysis = 'off'; this.jestEnvironment = 'jest-environment-node'; this.resolveFromDirectory = process.cwd(); } } exports.state = new State(); //# sourceMappingURL=messaging.cjs.map