UNPKG

playwright-performance-reporter

Version:

Measure and publish performance metrics from browser dev-tools when running playwright

10 lines (9 loc) 167 B
/** * Summary statistics for a metric across multiple runs */ export type MetricSummary = { min: number; max: number; avg: number; count: number; };