UNPKG

cucumber-steps-parser

Version:

A utility to parse the cucumber steps defined in the corresponding step definition files

4 lines (3 loc) 254 B
import { ICucumberStep, IParsingOptions } from '../types'; export declare const getFileCucumberSteps: (filePath: string) => ICucumberStep[]; export declare const getFolderCucumberSteps: (folderPath: string, options?: IParsingOptions) => ICucumberStep[];