Skip to content
This repository has been archived by the owner on Feb 19, 2022. It is now read-only.

Commit

Permalink
Fix multi browser default and remove ie9 test
Browse files Browse the repository at this point in the history
  • Loading branch information
ryan-roemer committed Apr 25, 2015
1 parent 32960b1 commit d8d9a7a
Showing 1 changed file with 13 additions and 8 deletions.
21 changes: 13 additions & 8 deletions test/client/karma.conf.saucelabs.js
Expand Up @@ -16,12 +16,13 @@ var SAUCE_ENVS = {
browserName: "safari",
platform: "OS X 10.9"
},
"ie9-win7": {
base: "SauceLabs",
browserName: "internet explorer",
platform: "Windows 7",
version: "9"
},
// TODO: Appears to fail conversion tests.
// "ie9-win7": {
// base: "SauceLabs",
// browserName: "internet explorer",
// platform: "Windows 7",
// version: "9"
// },
"ie10-win7": {
base: "SauceLabs",
browserName: "internet explorer",
Expand All @@ -37,8 +38,12 @@ var SAUCE_ENVS = {
};

// Optionally filter browsers from environment or "all browsers"
var BROWSERS = (process.env.BROWSERS || "").split(",")
.filter(function (x) { return x; }) || Object.keys(SAUCE_ENVS);
var BROWSERS = (process.env.BROWSERS || "")
.split(",")
.filter(function (x) { return x; });
if (!BROWSERS.length) {
BROWSERS = Object.keys(SAUCE_ENVS);
}

// SauceLabs tag.
var SAUCE_BRANCH = process.env.TRAVIS_BRANCH || "local";
Expand Down

0 comments on commit d8d9a7a

Please sign in to comment.