jest-allure2-reporter
Version:
Idiomatic Jest reporter for Allure Framework
9 lines (8 loc) • 351 B
TypeScript
import type { AllureTestCaseResult } from 'jest-allure2-reporter';
import type { Container as AllureContainer } from 'allure-store';
export type TestContainerOptions = {
name: string;
rootDir: string;
testUUID: string;
};
export declare function toTestContainer(test: AllureTestCaseResult, options: TestContainerOptions): AllureContainer;