Skip to content

Commit c1bcd9b

Browse files
committed
chore(travis): run test on IE10, IE11, Safari6 and Safari7
1 parent 9b255d9 commit c1bcd9b

File tree

2 files changed

+26
-4
lines changed

2 files changed

+26
-4
lines changed

.travis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,21 +19,21 @@ env:
1919
- JOB=unit-stable
2020
CHANNEL=stable
2121
TESTS=dart2js
22-
BROWSERS=SL_Chrome,SL_Firefox
22+
BROWSERS=SL_Chrome,SL_Firefox,SL_IE10,SL_IE11,SL_Safari6,SL_Safari7
2323
- JOB=unit-dev
2424
CHANNEL=dev
2525
TESTS=dart2js
26-
BROWSERS=SL_Chrome,SL_Firefox
26+
BROWSERS=SL_Chrome,SL_Firefox,SL_IE10,SL_IE11,SL_Safari6,SL_Safari7
2727
- JOB=e2e-g3stable
2828
CHANNEL=stable
2929
BROWSERS=DartiumWithWebPlatform,SL_Chrome
3030
USE_G3=YES
3131
- JOB=e2e-stable
3232
CHANNEL=stable
33-
BROWSERS=DartiumWithWebPlatform,SL_Chrome
33+
BROWSERS=DartiumWithWebPlatform,SL_Chrome,SL_Firefox,SL_IE10,SL_IE11,SL_Safari6,SL_Safari7
3434
- JOB=e2e-dev
3535
CHANNEL=dev
36-
BROWSERS=DartiumWithWebPlatform,SL_Chrome
36+
BROWSERS=DartiumWithWebPlatform,SL_Chrome,SL_Firefox,SL_IE10,SL_IE11,SL_Safari6,SL_Safari7
3737
global:
3838
- secure: AKoqpZ699egF0i4uT/FQ5b4jIc0h+KVbhtVCql0uFxwFIl2HjOYgDayrUCAf6USfpW0LghZxJJhBamWOl/505eNSe9HvEd8JLg/to+1Fo9xi9llsu5ehmNH31/5pue4EvsrVuEap1qqL6/BNwI2cAryayU0p5tV0g8gL5h4IxG8=
3939
- LOGS_DIR=/tmp/angular-build/logs

karma.conf.js

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,28 @@ module.exports = function(config) {
8080
browserName: 'firefox',
8181
version: '30'
8282
},
83+
'SL_Safari6': {
84+
base: 'SauceLabs',
85+
browserName: 'safari',
86+
version: '6'
87+
},
88+
'SL_Safari7': {
89+
base: 'SauceLabs',
90+
browserName: 'safari',
91+
version: '7'
92+
},
93+
'SL_IE10': {
94+
base: 'SauceLabs',
95+
browserName: 'internet explorer',
96+
platform: 'Windows 8',
97+
version: '10'
98+
},
99+
'SL_IE11': {
100+
base: 'SauceLabs',
101+
browserName: 'internet explorer',
102+
platform: 'Windows 8.1',
103+
version: '11'
104+
},
83105
DartiumWithWebPlatform: {
84106
base: 'Dartium',
85107
flags: ['--enable-experimental-web-platform-features'] }

0 commit comments

Comments
 (0)