mirror of
https://github.com/google/blockly.git
synced 2026-01-09 10:00:09 +01:00
9 lines
182 B
Bash
Executable File
9 lines
182 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ "${TRAVIS_OS_NAME}" == "linux" ]
|
|
then
|
|
export CHROME_BIN="/usr/bin/google-chrome"
|
|
sh -e /etc/init.d/xvfb start &
|
|
npm run test:prepare > /dev/null &
|
|
fi
|