UNPKG

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