MCPcopy Create free account
hub / github.com/UsefulSoftwareCo/executor / settle

Function settle

e2e/src/surfaces/browser.ts:63–68  ·  view source on GitHub ↗
(page: Page)

Source from the content-addressed store, hash-verified

61 * page-specific readiness signal where `networkidle` was only ever a proxy.
62 */
63export 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

Callers 9

org-delete.test.tsFile · 0.90
org-limit.test.tsFile · 0.90
visitFunction · 0.70
revisitFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected