Skip to content

Commit

Permalink
Temporarily removing Edge from Sauce Labs
Browse files Browse the repository at this point in the history
  • Loading branch information
nickuraltsev committed Oct 11, 2016
1 parent 2f7be51 commit 12341d8
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ module.exports = function(config) {
if (runAll || process.env.SAUCE_SAFARI) {
// customLaunchers.SL_Safari7 = createCustomLauncher('safari', 7);
// customLaunchers.SL_Safari8 = createCustomLauncher('safari', 8);

// TODO: Fix the issue with disconnected tests
// customLaunchers.SL_Safari9 = createCustomLauncher('safari', 9);
}
Expand All @@ -71,17 +71,18 @@ module.exports = function(config) {
if (runAll || process.env.SAUCE_IE) {
// TODO These need to be fixed
// customLaunchers.SL_IE8 = createCustomLauncher('internet explorer', 8, 'Windows 7');

// TODO: Fix the issue with disconnected tests
// customLaunchers.SL_IE9 = createCustomLauncher('internet explorer', 9, 'Windows 2008');

customLaunchers.SL_IE10 = createCustomLauncher('internet explorer', 10, 'Windows 2012');
customLaunchers.SL_IE11 = createCustomLauncher('internet explorer', 11, 'Windows 8.1');
}

// Edge
if (runAll || process.env.SAUCE_EDGE) {
customLaunchers.SL_Edge = createCustomLauncher('microsoftedge', null, 'Windows 10');
// TODO: Fix the issue with disconnected tests
// customLaunchers.SL_Edge = createCustomLauncher('microsoftedge', null, 'Windows 10');
}

// IOS
Expand Down

0 comments on commit 12341d8

Please sign in to comment.