We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
npm test
1 parent 21f60c5 commit bf4b75eCopy full SHA for bf4b75e
1 file changed
gulpfile.js
@@ -545,8 +545,10 @@ function getBrowsersFromCLI() {
545
var outputList = [];
546
for (var i = 0; i < inputList.length; i++) {
547
var input = inputList[i];
548
- if (sauceConf.customLaunchers.hasOwnProperty(input)) {
549
- //Non-sauce browsers case: overrides everything, ignoring other options
+ var karmaChromeLauncher = require('karma-chrome-launcher');
+ if (sauceConf.customLaunchers.hasOwnProperty(input) || karmaChromeLauncher.hasOwnProperty("launcher:" + input)) {
550
+ // In case of non-sauce browsers, or browsers defined in karma-chrome-launcher (Chrome, ChromeCanary and Dartium):
551
+ // overrides everything, ignoring other options
552
outputList = [input];
553
isSauce = false;
554
break;
0 commit comments