Merge pull request #8369 from mozilla/brendandahl-patch-1

Add no-default-browser-check to chrome runner.
This commit is contained in:
Yury Delendik 2017-05-03 13:44:19 -05:00 committed by GitHub
commit e42fc546a0

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) {