Skip to content

Commit

Permalink
add args
Browse files Browse the repository at this point in the history
  • Loading branch information
kaloster committed Sep 10, 2024
1 parent e002d86 commit 7785c15
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/compatibility_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,9 +110,7 @@ jobs:
- name: Unit Tests - server
run: make unit-test-server
- name: Smoke Tests
run: |
npx puppeteer install
make smoke-test
run: make smoke-test
# FIXME: Fails intermittently. See https://app.zenhub.com/workspaces/single-cell-5e2a191dad828d52cc78b028/issues/chanzuckerberg/cellxgene/2415
# - name: Smoke Tests with Annotations
# run: make smoke-test-annotations
7 changes: 6 additions & 1 deletion client/jest-puppeteer.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,12 @@ const isHeadful =

const DEFAULT_LAUNCH_CONFIG = {
headless: !isHeadful,
args: ["--ignore-certificate-errors", "--ignore-ssl-errors"],
args: [
"--ignore-certificate-errors",
"--ignore-ssl-errors",
"--no-sandbox",
"--disable-setuid-sandbox",
],
ignoreHTTPSErrors: true,
defaultViewport: {
width: 1280,
Expand Down

0 comments on commit 7785c15

Please sign in to comment.