From c10679ce3bdedb8b2830c4973e741f97ecf0a109 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D1=80=D1=82=D1=91=D0=BC=20=D0=9F=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=BE=D0=B2=20=5BArtyom=20Pavlov=5D?= Date: Fri, 5 Apr 2024 16:07:33 +0300 Subject: [PATCH] Tweak web tests --- .github/workflows/tests.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 2c62424c..2649ab2c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -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' @@ -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