UNPKG

tdpw

Version:

CLI tool for uploading Playwright test reports to TestDino platform with Azure storage support

13 lines 287 B
/** * Request payload for uploading a Playwright report */ export interface ReportUploadRequest { testResults: unknown; } /** * Response from TestDino API upon successful upload */ export interface ReportUploadResponse { testRunId: string; } //# sourceMappingURL=api.d.ts.map