Skip to content

Commit

Permalink
fix: update chrome headless parameters
Browse files Browse the repository at this point in the history
Add '--disable-gpu' to fix the error: ContextResult::kTransientFailure: Failed to send GpuControl.CreateCommandBuffer.
  • Loading branch information
dlachaume committed Jan 31, 2024
1 parent a124900 commit 2e37228
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ jobs:
- name: Run Chrome headless
shell: bash
run: |
/usr/bin/google-chrome --headless --virtual-time-budget=180000 --timeout=180000 --dump-dom http://localhost:8080 > chrome-results.html
/usr/bin/google-chrome --headless --virtual-time-budget=180000 --timeout=180000 --dump-dom --disable-gpu http://localhost:8080 > chrome-results.html
./.github/workflows/scripts/parse-wasm-headless-tests-results.sh chrome-results.html
- name: Run Firefox headless
Expand Down

0 comments on commit 2e37228

Please sign in to comment.