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

Commit 5dbb590

Browse files
committed
add latest-1 for Chrome, FF, Edge
1 parent 4c3c0e4 commit 5dbb590

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
lines changed

karma-shared.conf.js

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,21 @@ module.exports = function(config, specificOptions) {
4747
browserName: 'chrome',
4848
version: 'latest'
4949
},
50+
'SL_Chrome-1': {
51+
base: 'SauceLabs',
52+
browserName: 'chrome',
53+
version: 'latest-1'
54+
},
5055
'SL_Firefox': {
5156
base: 'SauceLabs',
5257
browserName: 'firefox',
5358
version: 'latest'
5459
},
60+
'SL_Firefox-1': {
61+
base: 'SauceLabs',
62+
browserName: 'firefox',
63+
version: 'latest-1'
64+
},
5565
'SL_Safari_8': {
5666
base: 'SauceLabs',
5767
browserName: 'safari',
@@ -86,7 +96,13 @@ module.exports = function(config, specificOptions) {
8696
base: 'SauceLabs',
8797
browserName: 'microsoftedge',
8898
platform: 'Windows 10',
89-
version: '14'
99+
version: 'latest'
100+
},
101+
'SL_EDGE-1': {
102+
base: 'SauceLabs',
103+
browserName: 'microsoftedge',
104+
platform: 'Windows 10',
105+
version: 'latest-1'
90106
},
91107
'SL_iOS': {
92108
base: 'SauceLabs',

scripts/travis/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ case "$JOB" in
2121
if [ "$BROWSER_PROVIDER" == "browserstack" ]; then
2222
BROWSERS="BS_Chrome,BS_Safari,BS_Firefox,BS_IE_9,BS_IE_10,BS_IE_11,BS_EDGE,BS_iOS_8,BS_iOS_9"
2323
else
24-
BROWSERS="SL_Chrome,SL_Firefox,SL_Safari_8,SL_Safari_9,SL_IE_9,SL_IE_10,SL_IE_11,SL_EDGE,SL_iOS"
24+
BROWSERS="SL_Chrome,SL_Chrome-1,SL_Firefox,SL_Firefox-1,SL_Safari_8,SL_Safari_9,SL_IE_9,SL_IE_10,SL_IE_11,SL_EDGE,SL_EDGE-1,SL_iOS"
2525
fi
2626

2727
grunt test:promises-aplus

0 commit comments

Comments
 (0)