mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-09-10 02:25:56 +00:00
6667bd8ad0
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
10 lines
295 B
TypeScript
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[]>;
|