UNPKG

playwright-performance-reporter

Version:

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

17 lines (16 loc) 767 B
import { AllPerformanceMetrics, } from './all-performance-metrics.js'; import { HeapDump, } from './heap-dump.js'; import { HeapObjectsTracking, } from './heap-objects-tracking.js'; import { HeapProfilerSampling, } from './heap-profiler-sampling.js'; import { NetworkActivityObserver, } from './network-activity.js'; import { TotalJsHeapSize, } from './total-js-heap-size.js'; import { UsedJsHeapSize, } from './used-js-heap-size.js'; export const nativeChromiumObservers = { allPerformanceMetrics: AllPerformanceMetrics, heapDump: HeapDump, heapObjectsTracking: HeapObjectsTracking, heapProfilerSampling: HeapProfilerSampling, networkActivity: NetworkActivityObserver, totalJsHeapSize: TotalJsHeapSize, usedJsHeapSize: UsedJsHeapSize, };