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

Commit ad68ee1

Browse files
committed
chore(travis): test on Microsoft Edge
1 parent 970ba11 commit ad68ee1

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

karma-shared.conf.js

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,12 @@ module.exports = function(config, specificOptions) {
8282
platform: 'Windows 8.1',
8383
version: '11'
8484
},
85+
'SL_EDGE': {
86+
base: 'SauceLabs',
87+
browserName: 'microsoftedge',
88+
platform: 'Windows 10',
89+
version: '14'
90+
},
8591
'SL_iOS': {
8692
base: 'SauceLabs',
8793
browserName: 'iphone',
@@ -128,6 +134,13 @@ module.exports = function(config, specificOptions) {
128134
os: 'Windows',
129135
os_version: '8.1'
130136
},
137+
'BS_EDGE': {
138+
base: 'BrowserStack',
139+
browser: 'edge',
140+
browser_version: '14',
141+
os: 'Windows',
142+
os_version: '10'
143+
},
131144
'BS_iOS': {
132145
base: 'BrowserStack',
133146
device: 'iPhone 6S',

scripts/travis/build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ if [ "$JOB" == "ci-checks" ]; then
1616
fi
1717
elif [ "$JOB" == "unit" ]; then
1818
if [ "$BROWSER_PROVIDER" == "browserstack" ]; then
19-
BROWSERS="BS_Chrome,BS_Safari,BS_Firefox,BS_IE_9,BS_IE_10,BS_IE_11,BS_iOS"
19+
BROWSERS="BS_Chrome,BS_Safari,BS_Firefox,BS_IE_9,BS_IE_10,BS_IE_11,BS_EDGE,BS_iOS"
2020
else
21-
BROWSERS="SL_Chrome,SL_Firefox,SL_Safari_8,SL_Safari_9,SL_IE_9,SL_IE_10,SL_IE_11,SL_iOS"
21+
BROWSERS="SL_Chrome,SL_Firefox,SL_Safari_8,SL_Safari_9,SL_IE_9,SL_IE_10,SL_IE_11,SL_EDGE,SL_iOS"
2222
fi
2323

2424
grunt test:promises-aplus

0 commit comments

Comments
 (0)