Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 9663574

Browse files
committed
chore(karma-shared.conf): update browser versions
1 parent c98faac commit 9663574

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

karma-shared.conf.js

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,17 @@ module.exports = function(config, specificOptions) {
4242
browserName: 'firefox',
4343
version: '26'
4444
},
45-
'SL_Safari': {
45+
'SL_Safari_8': {
4646
base: 'SauceLabs',
4747
browserName: 'safari',
48-
platform: 'OS X 10.9',
49-
version: '7'
48+
platform: 'OS X 10.10',
49+
version: '8'
50+
},
51+
'SL_Safari_9': {
52+
base: 'SauceLabs',
53+
browserName: 'safari',
54+
platform: 'OS X 10.11',
55+
version: '9'
5056
},
5157
'SL_IE_8': {
5258
base: 'SauceLabs',

scripts/travis/build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ if [ $JOB = "ci-checks" ]; then
99
grunt ci-checks
1010
elif [ $JOB = "unit" ]; then
1111
if [ "$BROWSER_PROVIDER" == "browserstack" ]; then
12-
BROWSERS="BS_Chrome,BS_Safari,BS_Firefox,BS_IE_8,BS_IE_9,BS_IE_10,BS_IE_11"
12+
BROWSERS="BS_Chrome,BS_Firefox,BS_Safari,BS_IE_8,BS_IE_9,BS_IE_10,BS_IE_11"
1313
else
14-
BROWSERS="SL_Chrome,SL_Safari,SL_Firefox,SL_IE_8,SL_IE_9,SL_IE_10,SL_IE_11"
14+
BROWSERS="SL_Chrome,SL_Firefox,SL_Safari_8,SL_Safari_9,SL_IE_8,SL_IE_9,SL_IE_10,SL_IE_11"
1515
fi
1616

1717
grunt test:promises-aplus

0 commit comments

Comments
 (0)