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

11 lines 500 B
import type { PlaywrightPulseReport } from '@/types/playwright'; import type { TestStatusFilter } from './LiveTestResults'; interface SummaryMetricsProps { currentRun: PlaywrightPulseReport | null; loading: boolean; error: string | null; onMetricClick?: (filter: TestStatusFilter) => void; } export declare function SummaryMetrics({ currentRun, loading, error, onMetricClick }: SummaryMetricsProps): import("react").JSX.Element; export {}; //# sourceMappingURL=SummaryMetrics.d.ts.map