playwright-performance-reporter
Version:
Measure and publish performance metrics from browser dev-tools when running playwright
38 lines (37 loc) • 586 B
JavaScript
export class FirefoxDevelopmentTools {
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 'firefox';
}
}