Skip to content

Commit

Permalink
Add xvfb cli args (#3003)
Browse files Browse the repository at this point in the history
  • Loading branch information
soulgalore committed May 18, 2020
1 parent e9fd85c commit cc3ca04
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions lib/cli/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,17 @@ module.exports.parseCommandLine = function parseCommandLine() {
describe: 'How many times you want to test each page',
group: 'Browser'
})
.option('browsertime.xvfb', {
alias: 'xvfb',
type: 'boolean',
default: false,
describe: 'Start xvfb before the browser is started'
})
.option('browsertime.xvfbParams.display', {
alias: 'xvfbParams.display',
default: 99,
describe: 'The display used for xvfb'
})
.option('browsertime.spa', {
alias: 'spa',
describe:
Expand Down

0 comments on commit cc3ca04

Please sign in to comment.