UNPKG

@stryker-mutator/jest-runner

Version:

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

12 lines 412 B
import type { Config } from '@jest/types'; import { JestRunResult } from '../jest-run-result.js'; export interface RunSettings { jestConfig: Config.InitialOptions; testNamePattern?: string; fileNamesUnderTest?: string[]; testLocationInResults?: boolean; } export interface JestTestAdapter { run(settings: RunSettings): Promise<JestRunResult>; } //# sourceMappingURL=jest-test-adapter.d.ts.map