UNPKG

@dapplets/dapplet-playwright

Version:
11 lines (10 loc) 578 B
import { type BrowserContext, Worker } from "@playwright/test"; export type BrowserOptions = { newHeadless: boolean; extensionVersion?: string; context: BrowserContext; extensionId: string; background: Worker; }; export declare const test: import("@playwright/test").TestType<import("@playwright/test").PlaywrightTestArgs & import("@playwright/test").PlaywrightTestOptions & BrowserOptions, import("@playwright/test").PlaywrightWorkerArgs & import("@playwright/test").PlaywrightWorkerOptions>; export declare const expect: import("@playwright/test").Expect;