fix(cli): fix wrong property for passing browser name (#12489)
This commit is contained in:
parent
71a4f69acf
commit
3db4b48bd3
|
|
@ -244,7 +244,7 @@ program
|
|||
.requiredOption('--browser <browserName>', 'Browser name, one of "chromium", "firefox" or "webkit"')
|
||||
.option('--config <path-to-config-file>', 'JSON file with launchServer options')
|
||||
.action(function(options) {
|
||||
launchBrowserServer(options.browserName, options.config);
|
||||
launchBrowserServer(options.browser, options.config);
|
||||
});
|
||||
|
||||
program
|
||||
|
|
|
|||
Loading…
Reference in a new issue