@dapplets/dapplet-playwright
Version:
Playwright fixtures to test dapplets
11 lines (10 loc) • 578 B
TypeScript
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;