UNPKG

@amiceli/vitest-cucumber

Version:

vitest tools to use Gherkin feature in unit tests

11 lines (10 loc) 340 B
import { StepAble } from './Stepable'; import { Step } from './step'; export declare class Background extends StepAble { constructor(title?: string); getTitle(): string; addStep(step: Step): void; } export declare class DefineBackground extends Background { checkIfStepExists(stepType: string, stepDetails: string): Step; }