UNPKG

playwright-performance-reporter

Version:

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

38 lines (37 loc) 584 B
export class WebkitDevelopmentTools { options; /** * @inheritdoc */ constructor(options) { this.options = options; } /** * @inheritdoc */ async connect() { } /** * @inheritdoc */ async getMetric(metric) { return []; } /** * @inheritdoc */ async runCustomObserver(customMetric, hookOrder) { return []; } /** * @inheritdoc */ destroy() { return null; } /** * @inheritdoc */ getBrowserName() { return 'webkit'; } }