UNPKG

e2ed

Version:

E2E testing framework over Playwright

12 lines (11 loc) 388 B
import type { Tab, Trigger } from '../../types/internal'; type Options = Readonly<{ skipLogs?: boolean; timeout?: number; }>; type WaitForNewTab = ((trigger: Trigger | undefined, options?: Options) => Promise<Tab>) & ((options?: Options) => Promise<Tab>); /** * Waits for opening of new tab and returns this tab. */ export declare const waitForNewTab: WaitForNewTab; export {};