UNPKG

e2ed

Version:

E2E testing framework over Playwright

11 lines (10 loc) 335 B
import type { MaybePromise } from './types/internal'; type Options = Readonly<{ skipLogs?: boolean; timeout?: number; }>; /** * Declares a test step (calls Playwright's `test.step` function inside). */ export declare const step: (name: string, body?: () => MaybePromise<void>, options?: Options) => Promise<void>; export {};