UNPKG

pulse-dashboard

Version:

A Next.js Dashboard application for real-time monitoring and historical analysis of Playwright test executions, based on playwright-pulse-report. This component provides the UI for visualizing Playwright test results and can be run as a standalone CLI too

12 lines 565 B
import type { PlaywrightPulseReport } from '@/types/playwright'; declare const testStatuses: readonly ["all", "passed", "failed", "skipped", "flaky"]; export type TestStatusFilter = typeof testStatuses[number]; interface LiveTestResultsProps { report: PlaywrightPulseReport | null; loading: boolean; error: string | null; initialFilter?: TestStatusFilter; } export declare function LiveTestResults({ report, loading, error, initialFilter }: LiveTestResultsProps): import("react").JSX.Element; export {}; //# sourceMappingURL=LiveTestResults.d.ts.map