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 • 433 B
TypeScript
import type { PlaywrightPulseReport, HistoricalTrend } from '@/types/playwright';
interface TestDataState {
currentRun: PlaywrightPulseReport | null;
historicalTrends: HistoricalTrend[];
loadingCurrent: boolean;
loadingHistorical: boolean;
errorCurrent: string | null;
errorHistorical: string | null;
}
export declare function useTestData(): TestDataState;
export {};
//# sourceMappingURL=useTestData.d.ts.map