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

Commit 2cdb201

Browse files
mgolpetebacondarwin
authored andcommitted
feat(travis): run unit tests on iOS 8
Refs #11471 Closes #11479
1 parent 10ae33b commit 2cdb201

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

karma-shared.conf.js

+12
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,12 @@ module.exports = function(config, specificOptions) {
6666
platform: 'Windows 8.1',
6767
version: '11'
6868
},
69+
'SL_iOS': {
70+
base: "SauceLabs",
71+
browserName: "iphone",
72+
platform: "OS X 10.10",
73+
version: "8.1"
74+
},
6975

7076
'BS_Chrome': {
7177
base: 'BrowserStack',
@@ -105,6 +111,12 @@ module.exports = function(config, specificOptions) {
105111
browser_version: '11.0',
106112
os: 'Windows',
107113
os_version: '8.1'
114+
},
115+
'BS_iOS': {
116+
base: 'BrowserStack',
117+
device: 'iPhone 6',
118+
os: 'ios',
119+
os_version: '8.0'
108120
}
109121
}
110122
});

scripts/travis/build.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ export SAUCE_ACCESS_KEY=`echo $SAUCE_ACCESS_KEY | rev`
77

88
if [ $JOB = "unit" ]; then
99
if [ "$BROWSER_PROVIDER" == "browserstack" ]; then
10-
BROWSERS="BS_Chrome,BS_Safari,BS_Firefox,BS_IE_9,BS_IE_10,BS_IE_11"
10+
BROWSERS="BS_Chrome,BS_Safari,BS_Firefox,BS_IE_9,BS_IE_10,BS_IE_11,BS_iOS"
1111
else
12-
BROWSERS="SL_Chrome,SL_Safari,SL_Firefox,SL_IE_9,SL_IE_10,SL_IE_11"
12+
BROWSERS="SL_Chrome,SL_Safari,SL_Firefox,SL_IE_9,SL_IE_10,SL_IE_11,SL_iOS"
1313
fi
1414

1515
grunt test:promises-aplus

0 commit comments

Comments
 (0)