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

Commit 9b6766c

Browse files
committed
chore: always test latest version of FF, Chrome, Edge
1 parent 69c3faf commit 9b6766c

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

karma-shared.conf.js

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,12 @@ module.exports = function(config, specificOptions) {
3737
'SL_Chrome': {
3838
base: 'SauceLabs',
3939
browserName: 'chrome',
40-
version: '51'
40+
version: 'latest'
4141
},
4242
'SL_Firefox': {
4343
base: 'SauceLabs',
4444
browserName: 'firefox',
45-
version: '47'
45+
version: 'latest'
4646
},
4747
'SL_Safari_8': {
4848
base: 'SauceLabs',
@@ -74,11 +74,11 @@ module.exports = function(config, specificOptions) {
7474
platform: 'Windows 8.1',
7575
version: '11'
7676
},
77-
'SL_EDGE': {
77+
'SL_Edge': {
7878
base: 'SauceLabs',
7979
browserName: 'microsoftedge',
8080
platform: 'Windows 10',
81-
version: '14'
81+
version: 'latest'
8282
},
8383
'SL_iOS': {
8484
base: 'SauceLabs',
@@ -126,10 +126,9 @@ module.exports = function(config, specificOptions) {
126126
os: 'Windows',
127127
os_version: '8.1'
128128
},
129-
'BS_EDGE': {
129+
'BS_Edge': {
130130
base: 'BrowserStack',
131131
browser: 'edge',
132-
browser_version: '14',
133132
os: 'Windows',
134133
os_version: '10'
135134
},

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_9,BS_IE_10,BS_IE_11,BS_EDGE,BS_iOS_8,BS_iOS_9"
12+
BROWSERS="BS_Chrome,BS_Safari,BS_Firefox,BS_IE_9,BS_IE_10,BS_IE_11,BS_Edge,BS_iOS_8,BS_iOS_9"
1313
else
14-
BROWSERS="SL_Chrome,SL_Firefox,SL_Safari_8,SL_Safari_9,SL_IE_9,SL_IE_10,SL_IE_11,SL_EDGE,SL_iOS"
14+
BROWSERS="SL_Chrome,SL_Firefox,SL_Safari_8,SL_Safari_9,SL_IE_9,SL_IE_10,SL_IE_11,SL_Edge,SL_iOS"
1515
fi
1616

1717
grunt test:promises-aplus

0 commit comments

Comments
 (0)