mirror of
https://github.com/google/blockly.git
synced 2026-01-09 10:00:09 +01:00
10 lines
238 B
Bash
Executable File
10 lines
238 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ "${TRAVIS_OS_NAME}" == "osx" ]
|
|
then
|
|
brew cask install google-chrome
|
|
sudo Xvfb :99 -ac -screen 0 1024x768x8 &
|
|
export CHROME_BIN="/Applications/Google Chrome.app"
|
|
npm run test:prepare > /dev/null &
|
|
fi
|