jest-bdd-generator
Version:
Jest code generator empowered with Gherkin and BDD
18 lines (17 loc) • 557 B
TypeScript
export * from './JestToGherkin';
/**
* Read from the given path of Jest testing code and compose Gherkin source code.
* @param options {{pathTestsInput: string}}: String path to the TypeScript testing code in Jest
* @returns Composed Gherkin source code.
*/
export declare function compose(options: {
pathTestsInput: string;
}): string;
/**
*
* @param options {{pathTestsInput: string}}: String path to the TypeScript testing code in Jest
* @returns
*/
export declare function generateComments(options: {
pathTestsInput: string;
}): string;