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
10 lines • 426 B
TypeScript
import type { PlaywrightPulseReport } from '@/types/playwright.js';
import React from 'react';
interface DashboardOverviewChartsProps {
currentRun: PlaywrightPulseReport | null;
loading: boolean;
error: string | null;
}
export declare function DashboardOverviewCharts({ currentRun, loading, error }: DashboardOverviewChartsProps): React.JSX.Element;
export {};
//# sourceMappingURL=DashboardOverviewCharts.d.ts.map