@stryker-mutator/tap-runner
Version:
A plugin to use the TAP (test anything protocol) test runner in Stryker, the JavaScript mutation testing framework
10 lines • 553 B
TypeScript
import { ChildProcessWithoutNullStreams } from 'child_process';
import * as tap from 'tap-parser';
export declare function findTestyLookingFiles(globPatterns: string[]): Promise<string[]>;
export interface TapResult {
result: tap.FinalResults;
failedTests: tap.TapError[];
}
export declare function captureTapResult(tapProcess: ChildProcessWithoutNullStreams, disableBail: boolean): Promise<TapResult>;
export declare function buildArguments(args: string[], hookFile: string, testFile: string): string[];
//# sourceMappingURL=tap-helper.d.ts.map