allure-js-commons
Version:
Allure JS Commons
17 lines (16 loc) • 557 B
TypeScript
import { AllureExecutable } from "./AllureExecutable";
import { AllureRuntime } from "./AllureRuntime";
import { AllureTest } from "./AllureTest";
export declare class AllureGroup {
private readonly runtime;
private testResultContainer;
constructor(runtime: AllureRuntime);
startGroup(name?: string): AllureGroup;
startTest(name?: string, start?: number): AllureTest;
endGroup(): void;
get uuid(): string;
get name(): string;
set name(name: string);
addBefore(): AllureExecutable;
addAfter(): AllureExecutable;
}