stryker
Version:
The extendable JavaScript mutation testing framework
11 lines • 414 B
TypeScript
import { RunOptions, RunResult } from 'stryker-api/test_runner';
import TestRunnerDecorator from './TestRunnerDecorator';
/**
* Wraps a test runner and implements the timeout functionality.
*/
export default class TimeoutDecorator extends TestRunnerDecorator {
private readonly log;
run(options: RunOptions): Promise<RunResult>;
private handleTimeout;
}
//# sourceMappingURL=TimeoutDecorator.d.ts.map