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

Commit 496138f

Browse files
committed
chore: test on Microsoft Edge
Closes #13687 Closes #14401
1 parent 37a2c20 commit 496138f

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

karma-shared.conf.js

+13
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,12 @@ module.exports = function(config, specificOptions) {
7474
platform: 'Windows 8.1',
7575
version: '11'
7676
},
77+
'SL_EDGE': {
78+
base: 'SauceLabs',
79+
browserName: 'microsoftedge',
80+
platform: 'Windows 10',
81+
version: '14'
82+
},
7783
'SL_iOS': {
7884
base: 'SauceLabs',
7985
browserName: 'iphone',
@@ -120,6 +126,13 @@ module.exports = function(config, specificOptions) {
120126
os: 'Windows',
121127
os_version: '8.1'
122128
},
129+
'BS_EDGE': {
130+
base: 'BrowserStack',
131+
browser: 'edge',
132+
browser_version: '14',
133+
os: 'Windows',
134+
os_version: '10'
135+
},
123136
'BS_iOS_8': {
124137
base: 'BrowserStack',
125138
device: 'iPhone 6',

scripts/travis/build.sh

+2-2
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_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_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)