@mmisty/cypress-grep
Version: 
Filters tests by tags/title using substring or regular expressions (can find dynamic tags)
23 lines (22 loc) • 557 B
TypeScript
export type GrepConfig = {
    /**
     * Add UI control to filter test (only for interactive mode), default false
     */
    addControlToUI?: boolean;
    /**
     * Show tags in test title, default false
     */
    showTagsInTitle?: boolean;
    /**
     * Show excluded tests as pending, default false
     */
    showExcludedTests?: boolean;
    /**
     * Whether to fail run when no tests are found, default true
     */
    failOnNotFound?: boolean;
    /**
     * show logs in console (filtered tests with tags)
     */
    debugLog?: boolean;
};