UNPKG

@stencil/playwright

Version:

Testing adapter to use Playwright with Stencil

9 lines (8 loc) 446 B
import type { PlaywrightTestArgs, PlaywrightTestOptions, PlaywrightWorkerArgs, PlaywrightWorkerOptions } from '@playwright/test'; import type { E2EPage, E2ESkip } from './playwright-declarations'; type CustomFixtures = { page: E2EPage; skip: E2ESkip; }; export declare const test: import("@playwright/test").TestType<PlaywrightTestArgs & PlaywrightTestOptions & CustomFixtures, PlaywrightWorkerArgs & PlaywrightWorkerOptions>; export {};