playwright-bdd
Version:
BDD Testing with Playwright runner
9 lines • 441 B
TypeScript
import { parse as parseTagsExpression } from '@cucumber/tag-expressions';
export { extractTagsFromPath } from '../utils/tagsFromPath';
type TagString = string | undefined;
export type TagsExpression = ReturnType<typeof parseTagsExpression>;
/**
* Combines several tags strings and build tags expression.
*/
export declare function buildTagsExpression(tagStrings: TagString[]): TagsExpression | undefined;
//# sourceMappingURL=tags.d.ts.map