allure-vitest
Version:
Allure Vitest integration
10 lines (9 loc) • 445 B
TypeScript
import type { VitestRunner } from "@vitest/runner";
import type { SerializedConfig } from "vitest";
type VitestRunnerCtor = new (config: SerializedConfig) => VitestRunner;
declare const ConcurrencyAwareAllureVitestRunner_base: VitestRunnerCtor;
export default class ConcurrencyAwareAllureVitestRunner extends ConcurrencyAwareAllureVitestRunner_base implements VitestRunner {
#private;
constructor(config: SerializedConfig);
}
export {};