Skip to content

Commit

Permalink
add timeout before setup
Browse files Browse the repository at this point in the history
  • Loading branch information
rainandbare committed Sep 10, 2024
1 parent b0f00e2 commit 693a84a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/compatibility_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down
2 changes: 2 additions & 0 deletions client/__tests__/globalSetup.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
const { setup } = require("jest-environment-puppeteer");

module.exports = async () => {
console.log("Global setup...");
jest.setTimeout(20 * 1000);
await setup();
};

0 comments on commit 693a84a

Please sign in to comment.