gauge-ts
Version:
Typescript runner for Gauge
10 lines (9 loc) • 391 B
TypeScript
export declare class Scenario {
private readonly _name;
private readonly _isFailing;
private readonly _tags;
constructor(name: string | null | undefined, isFailing: boolean | null | undefined, tags: Array<string> | null | undefined);
getName(): string | null | undefined;
getIsFailing(): boolean | null | undefined;
getTags(): Array<string> | null | undefined;
}