UNPKG

gpc-step-groups

Version:

The StepGroups precompiler is responsible for correcting the gherkin keywords of steps to make the tests more readable.

9 lines (8 loc) 335 B
import { Background, Scenario, ScenarioOutline } from 'gherkin-ast'; import { PreCompiler } from "gherking"; declare class StepGroups implements PreCompiler { onScenario(scenario: Scenario): void; onScenarioOutline(scenarioOutline: ScenarioOutline): void; onBackground(background: Background): void; } export = StepGroups;