We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 663410b commit 03623abCopy full SHA for 03623ab
scripts/build_against_electron.sh
@@ -19,7 +19,12 @@ function publish() {
19
function electron_pretest() {
20
npm install -g electron@${ELECTRON_VERSION}
21
npm install -g electron-mocha
22
- sh -e /etc/init.d/xvfb start
+ if [ "${TRAVIS_OS_NAME}" = "osx" ]; then
23
+ (sudo Xvfb :99 -ac -screen 0 1024x768x8; echo ok )&
24
+ else
25
+ sh -e /etc/init.d/xvfb start
26
+ fi
27
+
28
sleep 3
29
}
30
0 commit comments