UNPKG

@amiceli/vitest-cucumber

Version:

vitest tools to use Gherkin feature in unit tests

9 lines (8 loc) 215 B
import { ScenarioParent } from './ScenarioParent'; export class Rule extends ScenarioParent { isCalled; constructor(name, title = 'Rule') { super(name, title); this.isCalled = false; } }