cucumber-steps-parser
Version:
A utility to parse the cucumber steps defined in the corresponding step definition files
11 lines (10 loc) • 348 B
TypeScript
export interface IParsingOptions {
/**
* Only the filenames matching this regular expression will be parsed. Defaults to typescript files only (`/^.*\.ts$/`)
*/
filenameRegExp?: RegExp | string;
/**
* Whether the folders found in the given path are recursively parsed. Defaults to true
*/
recursive?: boolean;
}