From 550443f39c4c4c0627e9c6bb3454db4abd96f1ac Mon Sep 17 00:00:00 2001 From: Rachel Fenichel Date: Mon, 18 Sep 2023 12:03:30 -0700 Subject: [PATCH] chore(deps): remove selenium config and macOS test setup --- .github/workflows/browser_test.yml | 4 ---- .github/workflows/build.yml | 4 ---- tests/scripts/selenium-config.js | 28 ---------------------------- tests/scripts/setup_osx_env.sh | 6 ------ 4 files changed, 42 deletions(-) delete mode 100644 tests/scripts/selenium-config.js delete mode 100755 tests/scripts/setup_osx_env.sh diff --git a/.github/workflows/browser_test.yml b/.github/workflows/browser_test.yml index 37c1c39b3..9b832e246 100644 --- a/.github/workflows/browser_test.yml +++ b/.github/workflows/browser_test.yml @@ -45,10 +45,6 @@ jobs: if: runner.os == 'Linux' run: source ./tests/scripts/setup_linux_env.sh - - name: MacOS Test Setup - if: runner.os == 'macOS' - run: source ./tests/scripts/setup_osx_env.sh - - name: Run Build run: npm run build diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index eb8b2c886..85866cb2e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -44,10 +44,6 @@ jobs: if: runner.os == 'Linux' run: source ./tests/scripts/setup_linux_env.sh - - name: MacOS Test Setup - if: runner.os == 'macOS' - run: source ./tests/scripts/setup_osx_env.sh - - name: Run run: npm run test diff --git a/tests/scripts/selenium-config.js b/tests/scripts/selenium-config.js deleted file mode 100644 index ec59f1a08..000000000 --- a/tests/scripts/selenium-config.js +++ /dev/null @@ -1,28 +0,0 @@ -/* eslint-disable */ - -module.exports = { - // check for more recent versions of selenium here: - // https://selenium-release.storage.googleapis.com/index.html - version: '3.9.1', - baseURL: 'https://selenium-release.storage.googleapis.com', - drivers: { - chrome: { - // check for more recent versions of chrome driver here: - // https://chromedriver.storage.googleapis.com/index.html - version: '91.0.4472.19', - arch: process.arch, - baseURL: 'https://chromedriver.storage.googleapis.com', - }, - firefox: { - // check for more recent versions of chrome driver here: - // https://chromedriver.storage.googleapis.com/index.html - version: '0.21.0', - arch: process.arch, - baseURL: 'https://github.com/mozilla/geckodriver/releases/download', - }, - }, - requestOpts: { - // see https://github.com/request/request#requestoptions-callback - timeout: 10000, - }, -}; diff --git a/tests/scripts/setup_osx_env.sh b/tests/scripts/setup_osx_env.sh deleted file mode 100755 index 76c3461f9..000000000 --- a/tests/scripts/setup_osx_env.sh +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/bash - -if [ "${RUNNER_OS}" == "macOS" ] - then - export CHROME_BIN="/Applications/Google Chrome.app" -fi