From 45a2fd9d63421f4b6b8f34daf7cddc88c17b55e1 Mon Sep 17 00:00:00 2001 From: Richard van der Hoff <1389908+richvdh@users.noreply.github.com> Date: Mon, 28 Jul 2025 22:07:20 +0100 Subject: [PATCH] Re-enable matrixchat test (#30410) Now that we have better logging for our tests (https://github.com/element-hq/element-web/pull/30405), I'd like to re-enable this test so we can try and understsnd what makes it fail. --- test/unit-tests/components/structures/MatrixChat-test.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit-tests/components/structures/MatrixChat-test.tsx b/test/unit-tests/components/structures/MatrixChat-test.tsx index c00d26750c..6d8dcec1a7 100644 --- a/test/unit-tests/components/structures/MatrixChat-test.tsx +++ b/test/unit-tests/components/structures/MatrixChat-test.tsx @@ -1613,7 +1613,7 @@ describe("", () => { }); // Flaky test, see https://github.com/element-hq/element-web/issues/30337 - it.skip("waits for other tab to stop during startup", async () => { + it("waits for other tab to stop during startup", async () => { fetchMock.get("/welcome.html", { body: "

Hello

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