playwright-bdd
Version:
BDD Testing with Playwright runner
19 lines • 578 B
TypeScript
/**
* 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