File tree Expand file tree Collapse file tree 2 files changed +19
-6
lines changed Expand file tree Collapse file tree 2 files changed +19
-6
lines changed Original file line number Diff line number Diff line change 58
58
"gulp-task-listing" : " 1.0.1" ,
59
59
"istanbul" : " ^0.4.5" ,
60
60
"mocha" : " ^3.2.0" ,
61
- "socket.io-browsers" : " ^1.0.0" ,
62
61
"webpack" : " 1.12.12" ,
63
62
"webpack-stream" : " ^3.2.0" ,
64
63
"zuul" : " 3.11.1" ,
Original file line number Diff line number Diff line change 1
1
'use strict' ;
2
2
3
- var browsers = require ( 'socket.io-browsers' ) ;
4
-
5
- var zuulConfig = module . exports = {
3
+ const zuulConfig = module . exports = {
6
4
ui : 'mocha-bdd' ,
7
5
8
6
// test on localhost by default
@@ -29,5 +27,21 @@ if (process.env.CI === 'true') {
29
27
} ;
30
28
}
31
29
32
- var isPullRequest = process . env . TRAVIS_PULL_REQUEST && process . env . TRAVIS_PULL_REQUEST !== 'false' ;
33
- zuulConfig . browsers = isPullRequest ? browsers . pullRequest : browsers . all ;
30
+ zuulConfig . browsers = [
31
+ {
32
+ name : 'chrome' ,
33
+ version : 'latest'
34
+ } , {
35
+ name : 'firefox' ,
36
+ version : 'latest'
37
+ } , {
38
+ name : 'internet explorer' ,
39
+ version : '8..11'
40
+ } , {
41
+ name : 'safari' ,
42
+ version : 'latest'
43
+ } , {
44
+ name : 'android' ,
45
+ version : '5.1..6.0'
46
+ }
47
+ ] ;
You can’t perform that action at this time.
0 commit comments