UNPKG

e2ed

Version:

E2E testing framework over Playwright

10 lines (9 loc) 323 B
type Options = Readonly<{ skipLogs?: boolean; timeout?: number; }>; /** * Waits until the page interface stabilizes (in particular, the page will stop scrolling). */ export declare const waitForInterfaceStabilization: (stabilizationInterval?: number, { skipLogs, timeout }?: Options) => Promise<void>; export {};