allure-js-commons
Version:
Allure JS Commons
17 lines (16 loc) • 586 B
TypeScript
import { AllureRuntime } from "./AllureRuntime.js";
import { AllureTest } from "./AllureTest.js";
import { ExecutableItemWrapper } from "./ExecutableItemWrapper.js";
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(): ExecutableItemWrapper;
addAfter(): ExecutableItemWrapper;
}