perfrunner-core
Version:
Automated UI performance test tool to measure performance changes for the web apps and sites
11 lines (10 loc) • 351 B
TypeScript
import { Metrics } from 'puppeteer';
import { PerfOptions } from '../profiler/perf-options';
import { ExtendedPerformanceEntry } from '../profiler/types';
export interface PerfRunResult {
timeStamp: number;
runParams: PerfOptions;
pageMetrics: Metrics;
performanceEntries: ExtendedPerformanceEntry[];
comment?: string;
}