From 42c718666cdade7350172fb78ff306a36497f51f Mon Sep 17 00:00:00 2001 From: R Midhun Suresh Date: Fri, 18 Jul 2025 17:05:51 +0530 Subject: [PATCH] Skip flaky test (#30338) --- test/unit-tests/components/structures/MatrixChat-test.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/unit-tests/components/structures/MatrixChat-test.tsx b/test/unit-tests/components/structures/MatrixChat-test.tsx index 1fb705d98c..c813143142 100644 --- a/test/unit-tests/components/structures/MatrixChat-test.tsx +++ b/test/unit-tests/components/structures/MatrixChat-test.tsx @@ -1603,7 +1603,8 @@ describe("", () => { Lifecycle.setSessionLockNotStolen(); }); - it("waits for other tab to stop during startup", async () => { + // Flaky test, see https://github.com/element-hq/element-web/issues/30337 + it.skip("waits for other tab to stop during startup", async () => { fetchMock.get("/welcome.html", { body: "

Hello

" }); jest.spyOn(Lifecycle, "attemptDelegatedAuthLogin");