UNPKG

playwright-archive

Version:

A lightweight CLI tool to archive and serve your Playwright test run history with a web interface. Useful for CI environments and local development.

23 lines (21 loc) 553 B
export type Run = { run: string; report: string,metadata?: Metadata }; export interface Metadata { actualWorkers?: number|string; projects?:{ names?: string[]; quantity?: number; }, suites?:{ failedNames?: string[]; passedNames?: string[]; }, stats?:{ startTime?: string; duration?: number; quantity?: number; passedQuantity?: number; failedQuantity?: number; skippedQuantity?: number; flakyQuantity?: number; } }