UNPKG

jest-bdd-generator

Version:

Jest code generator empowered with Gherkin and BDD

11 lines (10 loc) 484 B
import { GherkinDocument } from '@cucumber/messages'; import { JestToGherkin } from '../jest-to-gherkin/JestToGherkin'; import { Step } from '../types'; export declare class TestGeneratorFromSource { transpiler?: JestToGherkin; source: string; compileGherkinFromSource(gherkinDoc: string): GherkinDocument; compileKnownStepsFromSource(source: string): JestToGherkin['output']; generateGherkinFromSource(steps: Step[], gherkinSource: string): string | undefined; }