@mmisty/cypress-grep
Version:
Filters tests by tags/title using substring or regular expressions (can find dynamic tags)
15 lines (14 loc) • 331 B
TypeScript
import { GrepTag } from '@mmisty/cypress-tags/common/types';
export type TransportTest = {
filePath: string;
title?: string;
tags?: GrepTag[];
filteredTitle?: string;
};
export type ParsedSpecs = {
parentFolder?: string;
filtered: number;
grep: string;
total: number;
tests: TransportTest[];
};