(page: Page)
| 61 | * page-specific readiness signal where `networkidle` was only ever a proxy. |
| 62 | */ |
| 63 | export const settle = async (page: Page): Promise<void> => { |
| 64 | await page |
| 65 | .waitForLoadState("networkidle", { timeout: SETTLE_TIMEOUT_MS }) |
| 66 | // oxlint-disable-next-line executor/no-promise-catch -- boundary: quiet is best-effort, the scenario's next assertion is the gate |
| 67 | .catch(() => {}); |
| 68 | }; |
| 69 | |
| 70 | /** |
| 71 | * Wait until React owns the document — the readiness `networkidle` was standing |
no outgoing calls
no test coverage detected