Skip to content

Commit 4abab25

Browse files
committed
Emulate IE9 and IE8 instead of launching actual browsers in CI
1 parent 1c3674b commit 4abab25

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

karma.conf.ci.js

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ module.exports = function(config) {
3030
base: 'SauceLabs',
3131
browserName: 'safari',
3232
platform: 'OS X 10.14',
33-
version: '12.0'
33+
version: 'latest'
3434
},
3535
slEdge: {
3636
base: 'SauceLabs',
@@ -54,7 +54,15 @@ module.exports = function(config) {
5454
base: 'SauceLabs',
5555
browserName: 'internet explorer',
5656
platform: 'Windows 7',
57-
version: '9.0'
57+
version: '10',
58+
'x-ua-compatible': 'IE=EmulateIE9'
59+
},
60+
slIE8: {
61+
base: 'SauceLabs',
62+
browserName: 'internet explorer',
63+
platform: 'Windows 7',
64+
version: '10',
65+
'x-ua-compatible': 'IE=EmulateIE8'
5866
}
5967
};
6068

0 commit comments

Comments
 (0)