allure-vitest
Version:
Allure Vitest integration
15 lines (14 loc) • 562 B
TypeScript
import type { TestPlanV1 } from "allure-js-commons/sdk";
import type { RunnerTask as Task } from "vitest";
export declare const getSuitePath: (task: Task) => string[];
export declare const getTestMetadata: (task: Task) => {
projectName: string | undefined;
specPath: string;
name: string;
suitePath: string[];
fullName: string;
legacyFullName: string;
labels: import("allure-js-commons").Label[];
links: import("allure-js-commons").Link[];
};
export declare const existsInTestPlan: (task: Task, testPlan?: TestPlanV1) => boolean;