playwright-bdd
Version:
BDD Testing with Playwright runner
20 lines • 799 B
TypeScript
import BaseReporter, { InternalOptions } from './base';
import { IFormatterOptions } from '../../cucumber/formatter';
export type CustomReporterOptions = {
colorsEnabled?: boolean;
outputFile?: string;
[k: string]: unknown;
};
export default class CustomReporter extends BaseReporter {
protected reporterPathOrModule: string;
protected userOptions: CustomReporterOptions;
private formatter?;
constructor(internalOptions: InternalOptions, reporterPathOrModule: string, userOptions?: CustomReporterOptions);
printsToStdio(): boolean;
init(): Promise<void>;
private initFromModule;
finished(): Promise<void>;
protected loadFormatterFromFile(): Promise<any>;
protected buildFormatterOptions(): IFormatterOptions;
}
//# sourceMappingURL=custom.d.ts.map