securityos/node_modules/next/dist/experimental/testmode/playwright/step.d.ts

13 lines
432 B
TypeScript
Raw Permalink Normal View History

2024-09-06 15:32:35 +00:00
import type { TestInfo } from '@playwright/test';
export interface StepProps {
category: string;
title: string;
apiName?: string;
params?: Record<string, string | number | boolean | null | undefined>;
}
type Complete = (result: {
error?: any;
}) => void;
export declare function step<T>(testInfo: TestInfo, props: StepProps, handler: (complete: Complete) => Promise<Awaited<T>>): Promise<Awaited<T>>;
export {};