sitespeed.io
Version:
sitespeed.io is an open-source tool for comprehensive web performance analysis, enabling you to test, monitor, and optimize your website’s speed using real browsers in various environments.
14 lines (13 loc) • 388 B
JavaScript
export function addOptions(yargs) {
yargs
.option('browsertime.edge.edgedriverPath', {
alias: 'edge.edgedriverPath',
describe: 'To run Edge you need to supply the path to the msedgedriver',
group: 'Edge'
})
.option('browsertime.edge.binaryPath', {
alias: 'edge.binaryPath',
describe: 'Path to custom Edge binary',
group: 'Edge'
});
}