UNPKG

621 BTypeScriptView Raw
1import { TestResult } from "./model";
2import { IAllureWriter } from "./writers";
3export interface IAllureConfig {
4 readonly resultsDir: string;
5 readonly writer?: IAllureWriter;
6 readonly testMapper?: (test: TestResult) => TestResult | null;
7}
8export declare class AllureConfig implements IAllureConfig {
9 readonly resultsDir: string;
10 readonly testMapper?: ((test: TestResult) => TestResult | null) | undefined;
11 readonly writer?: IAllureWriter | undefined;
12 constructor(resultsDir?: string, testMapper?: ((test: TestResult) => TestResult | null) | undefined, writer?: IAllureWriter | undefined);
13}
14
\No newline at end of file