UNPKG

odhin-reports-playwright

Version:
23 lines (22 loc) 401 B
export interface OnStepBegin { method: string; params: Params; } export interface Params { testId: string; resultId: string; step: Step; } export interface Step { id: string; title: string; category: string; startTime: number; location: Location; parentStepId: string; } export interface Location { file: string; line: number; column: number; }