UNPKG

playwright-flake-checker

Version:

A tool to check for flaky Playwright tests by running them multiple times and analyzing results.

16 lines (15 loc) 480 B
/** * Logger interface for logging messages with different styles. * @returns {Logger} An object with methods for logging messages. */ export declare const log: () => Logger; /** * Styled interface for styled text messages. * @returns {Styled} An object with methods for styled text messages. */ export declare const styled: Styled; /** * Displays a banner with the Playwright and Flake Checker logos. * @returns {void} */ export declare const displayBanner: () => void;