From 5a1d7385f862aa87803ec550d45cdd0d7a38b7f0 Mon Sep 17 00:00:00 2001 From: David Baker Date: Fri, 22 May 2026 17:00:57 +0100 Subject: [PATCH] Hopefully bust another flake (#33584) I guess this sometimes takes more than a second (!?) --- .../views/elements/crypto/VerificationQRCode-test.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/test/unit-tests/components/views/elements/crypto/VerificationQRCode-test.tsx b/apps/web/test/unit-tests/components/views/elements/crypto/VerificationQRCode-test.tsx index 8e7acf742e..504eb8a764 100644 --- a/apps/web/test/unit-tests/components/views/elements/crypto/VerificationQRCode-test.tsx +++ b/apps/web/test/unit-tests/components/views/elements/crypto/VerificationQRCode-test.tsx @@ -21,7 +21,7 @@ describe("", () => { , ); // wait for the spinner to go away - await waitFor(() => getAllByAltText("QR Code").length === 1); + await waitFor(() => getAllByAltText("QR Code").length === 1, { timeout: 2000 }); expect(container).toMatchSnapshot(); }); });