Add no-default-browser-check to chrome runner.

This commit is contained in:
Brendan Dahl 2017-05-03 11:22:08 -07:00 committed by GitHub
parent 74ba3033e8
commit b06022895e

View File

@ -229,7 +229,8 @@ ChromiumBrowser.prototype = Object.create(WebBrowser.prototype);
ChromiumBrowser.prototype.buildArguments = function (url) {
var profileDir = this.getProfileDir();
return ['--user-data-dir=' + profileDir,
'--no-first-run', '--disable-sync', url];
'--no-first-run', '--disable-sync',
'--no-default-browser-check', url];
};
WebBrowser.create = function (desc) {