Skip to content

Commit

Permalink
Tweak web tests
Browse files Browse the repository at this point in the history
  • Loading branch information
newpavlov committed Apr 5, 2024
1 parent d985876 commit c10679c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,9 @@ jobs:
- name: Test (Firefox)
run: wasm-pack test --headless --firefox --features=js,test-in-browser
- name: Test (Chrome)
# We get spurious failures, see:
# https://github.com/rust-random/getrandom/issues/400
continue-on-error: true
run: wasm-pack test --headless --chrome --features=js,test-in-browser
- name: Test (Edge)
if: runner.os == 'Windows'
Expand All @@ -258,8 +261,6 @@ jobs:
run: wasm-pack test --headless --chrome --chromedriver $Env:EDGEWEBDRIVER\msedgedriver.exe --features=js,test-in-browser
- name: Test (Safari)
if: runner.os == 'macOS'
# Safari tests are broken: https://github.com/rustwasm/wasm-bindgen/issues/3004
continue-on-error: true
run: wasm-pack test --headless --safari --features=js,test-in-browser
- name: Test (custom getrandom)
run: wasm-pack test --node --features=custom
Expand Down

0 comments on commit c10679c

Please sign in to comment.