jest-allure
Version:
Allure Reports for jest
13 lines (12 loc) • 399 B
TypeScript
/// <reference types="jest" />
declare namespace JestAllureReporter {
type ReporterConfig = {
resultsDir: string;
};
}
declare class JestAllureReporter implements jest.Reporter {
private reporterOptions;
constructor(globalConfig: jest.GlobalConfig, options?: Partial<JestAllureReporter.ReporterConfig>);
onTestStart(test: jest.Test): void;
}
export = JestAllureReporter;