UNPKG

allure-js-commons

Version:
8 lines (7 loc) 262 B
import { TestResult } from "./model.js"; import { AllureWriter } from "./writers/index.js"; export interface AllureConfig { readonly resultsDir: string; readonly writer?: AllureWriter; readonly testMapper?: (test: TestResult) => TestResult | null; }