@cucumber/cucumber
Version:
The official JavaScript implementation of Cucumber.
14 lines (13 loc) • 412 B
TypeScript
import Formatter, { IFormatterOptions } from './';
interface UriToLinesMap {
[uri: string]: number[];
}
export default class RerunFormatter extends Formatter {
protected readonly separator: string;
static readonly documentation: string;
constructor(options: IFormatterOptions);
getFailureMap(): UriToLinesMap;
formatFailedTestCases(): string;
logFailedTestCases(): void;
}
export {};