From f477db2251b794e9ed1daf263fe51756c454e018 Mon Sep 17 00:00:00 2001 From: Christopher Allen Date: Fri, 11 Jun 2021 16:42:22 +0100 Subject: [PATCH] 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. --- tests/scripts/setup_osx_env.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/scripts/setup_osx_env.sh b/tests/scripts/setup_osx_env.sh index 6f3100838..02a2ff7d7 100755 --- a/tests/scripts/setup_osx_env.sh +++ b/tests/scripts/setup_osx_env.sh @@ -2,8 +2,6 @@ if [ "${RUNNER_OS}" == "macOS" ] then - brew install google-chrome - sudo Xvfb :99 -ac -screen 0 1024x768x8 & export CHROME_BIN="/Applications/Google Chrome.app" npm run test:prepare > /dev/null & fi