diff --git a/.github/workflows/compatibility_tests.yml b/.github/workflows/compatibility_tests.yml index a25d7d3c7..a43155c5b 100644 --- a/.github/workflows/compatibility_tests.yml +++ b/.github/workflows/compatibility_tests.yml @@ -84,6 +84,8 @@ jobs: - name: Install dependencies (MacOS) if: startsWith(matrix.os, 'macos') run: brew install hdf5 + - name: Set Chromium path + run: echo "CHROME_EXECUTABLE_PATH=$(which chromium-browser)" >> $GITHUB_ENV - name: Install cellxgene from `main` branch if: matrix.cellxgene_build == 'main' run: | diff --git a/client/__tests__/globalSetup.js b/client/__tests__/globalSetup.js index 4802eda6f..b530a2467 100644 --- a/client/__tests__/globalSetup.js +++ b/client/__tests__/globalSetup.js @@ -1,5 +1,7 @@ const { setup } = require("jest-environment-puppeteer"); module.exports = async () => { + console.log("Global setup..."); + jest.setTimeout(20 * 1000); await setup(); };