File tree 2 files changed +10
-0
lines changed
2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change 8
8
cache :
9
9
directories :
10
10
- node_modules
11
+ before_install :
12
+ - export CHROME_BIN=chromium-browser
13
+ - export DISPLAY=:99.0
14
+ - sh -e /etc/init.d/xvfb start
11
15
after_success :
12
16
- cat ./coverage/lcov.info | ./node_modules/codecov.io/bin/codecov.io.js
13
17
- cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js
Original file line number Diff line number Diff line change @@ -56,6 +56,10 @@ module.exports = function (config) {
56
56
os_version : '10' ,
57
57
browser : 'ie' ,
58
58
browser_version : '11.0'
59
+ } ,
60
+ ChromeCi : {
61
+ base : 'Chrome' ,
62
+ flags : [ '--no-sandbox' ]
59
63
}
60
64
}
61
65
@@ -130,6 +134,8 @@ module.exports = function (config) {
130
134
if ( process . env . TRAVIS ) {
131
135
var buildLabel = 'TRAVIS #' + process . env . TRAVIS_BUILD_NUMBER + ' (' + process . env . TRAVIS_BUILD_ID + ')'
132
136
137
+ config . browsers . unshift ( 'ChromeCi' )
138
+
133
139
config . browserStack = {
134
140
username : process . env . BROWSER_STACK_USERNAME ,
135
141
accessKey : process . env . BROWSER_STACK_ACCESS_KEY ,
You can’t perform that action at this time.
0 commit comments