@amiceli/vitest-cucumber
Version:
vitest tools to use Gherkin feature in unit tests
11 lines (10 loc) • 356 B
TypeScript
import { type Background, type Scenario } from '.';
import { ScenarioParent } from './ScenarioParent';
export declare class Rule extends ScenarioParent {
isCalled: boolean;
constructor(name: string, title?: string);
}
export declare class DefineRule extends Rule {
getBackground(): Background;
getScenario(description: string): Scenario;
}