From 7a4ac57954d6cf6ca8f19f8cc2f7467bfcb0e687 Mon Sep 17 00:00:00 2001 From: David Baker Date: Tue, 14 May 2024 08:20:07 +0100 Subject: [PATCH] Disable the login overwriting test (#12507) See conmment Fixes https://github.com/element-hq/element-web/issues/27363 --- playwright/e2e/login/overwrite_login.spec.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/playwright/e2e/login/overwrite_login.spec.ts b/playwright/e2e/login/overwrite_login.spec.ts index 986fbfc516..7ef8769c9d 100644 --- a/playwright/e2e/login/overwrite_login.spec.ts +++ b/playwright/e2e/login/overwrite_login.spec.ts @@ -18,7 +18,9 @@ import { test, expect } from "../../element-web-test"; import { logIntoElement } from "../crypto/utils"; test.describe("Overwrite login action", () => { - test("Try replace existing login with new one", async ({ page, app, credentials, homeserver }) => { + // This seems terminally flakey: https://github.com/element-hq/element-web/issues/27363 + // I tried verious things to try & deflake it, to no avail: https://github.com/matrix-org/matrix-react-sdk/pull/12506 + test.skip("Try replace existing login with new one", async ({ page, app, credentials, homeserver }) => { await logIntoElement(page, homeserver, credentials); const userMenu = await app.openUserMenu();