UNPKG

250 BTypeScriptView Raw
1import { TestResult } from "./model";
2import { AllureWriter } from "./writers";
3export interface AllureConfig {
4 readonly resultsDir: string;
5 readonly writer?: AllureWriter;
6 readonly testMapper?: (test: TestResult) => TestResult | null;
7}