Skip to content
This repository was archived by the owner on Jan 13, 2025. It is now read-only.

Commit 8cb18fb

Browse files
authored
chore: remove IE11 from SauceLabs test suite (#7772)
It's more flaky than it's worth and is already covered by internal tests.
1 parent d71935c commit 8cb18fb

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

karma.conf.js

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -31,17 +31,9 @@ const HEADLESS_LAUNCHERS = {
3131
flags: ['-headless'],
3232
},
3333
};
34-
const SAUCE_LAUNCHERS = {
35-
'sl-ie': {
36-
base: 'SauceLabs',
37-
browserName: 'internet explorer',
38-
version: '11',
39-
platform: 'Windows 10',
40-
},
41-
};
4234
const USE_SAUCE = Boolean(process.env.SAUCE_USERNAME && process.env.SAUCE_ACCESS_KEY);
4335
const PROGRESS = USE_SAUCE ? 'dots' : 'progress';
44-
const customLaunchers = Object.assign({}, USE_SAUCE ? SAUCE_LAUNCHERS : {}, HEADLESS_LAUNCHERS);
36+
const customLaunchers = Object.assign({}, HEADLESS_LAUNCHERS);
4537
const browsers = USE_SAUCE ? Object.keys(customLaunchers) : ['Chrome'];
4638

4739
// Files to include in Jasmine tests.

0 commit comments

Comments
 (0)