Files
pulse/tests/integration/scripts/bootstrap-timing.d.mts
T
pulse-triage[bot] 6667bd8ad0 test: capture bounded paired Settings bootstrap timings
The hosted Settings failure stalls during bootstrap without enough evidence to separate server delay from browser scheduling. Attach redacted, bounded cookie-session HTTP timings alongside browser response timings without weakening readiness or layout assertions.

Change-source: pulse-maintainer
2026-09-09 10:03:05 +01:00

10 lines
295 B
TypeScript

import type { Page } from '@playwright/test';
export type BootstrapTiming = {
transport: string;
path: string;
started: number;
status: number | null;
duration: number | null;
};
export function observeBootstrapTiming(page: Page, now?: () => number): () => Promise<BootstrapTiming[]>;