playwright-performance
Version:
Playwright plugin for analyzing test flow performance
10 lines (9 loc) • 351 B
TypeScript
import { PerformanceResult } from "./entities/performance-result";
import { Options } from "./entities/options";
export declare class PerformanceAnalyzer {
_performanceResults: Array<PerformanceResult>;
constructor();
analyze(options: Options, workerIndex: number): Promise<void>;
private serializeData;
private deserializeData;
}