UNPKG

allure-vitest

Version:
10 lines (9 loc) 445 B
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 {};