playwright-performance-reporter
Version:
Measure and publish performance metrics from browser dev-tools when running playwright
32 lines (31 loc) • 471 B
JavaScript
export class FirefoxDevelopmentTools {
options;
/**
* @inheritdoc
*/
constructor(options) {
this.options = options;
}
/**
* @inheritdoc
*/
async connect() { }
/**
* @inheritdoc
*/
async getMetric(metric) {
return [];
}
/**
* @inheritdoc
*/
destroy() {
return null;
}
/**
* @inheritdoc
*/
getBrowserName() {
return 'firefox';
}
}