UNPKG

playwright-bdd

Version:
19 lines 578 B
/** * Cucumber JUnit reporter. * * Uses https://github.com/cucumber/junit-xml-formatter. */ import BaseReporter, { InternalOptions } from './base'; type JunitReporterOptions = { outputFile?: string; suiteName?: string; nameFormat?: 'cucumber' | 'playwright'; }; export default class JunitReporter extends BaseReporter { protected userOptions: JunitReporterOptions; constructor(internalOptions: InternalOptions, userOptions?: JunitReporterOptions); init(): Promise<void>; private getNamingStrategy; } export {}; //# sourceMappingURL=junit.d.ts.map