Files
blockly/tests/scripts/setup_osx_env.sh
Christopher Allen f477db2251 Remove unneeded macOS setup
Chrome comes pre-installed on GitHub hosted macOS runners, and while
`Xvfb` does not seem to be installed neither does it seem to be needed.
2021-06-14 19:41:12 +01:00

8 lines
153 B
Bash
Executable File

#!/bin/bash
if [ "${RUNNER_OS}" == "macOS" ]
then
export CHROME_BIN="/Applications/Google Chrome.app"
npm run test:prepare > /dev/null &
fi