Disable the login overwriting test (#12507)

See conmment

Fixes https://github.com/element-hq/element-web/issues/27363
pull/28217/head
David Baker 2024-05-14 08:20:07 +01:00 committed by GitHub
parent b283b18898
commit 7a4ac57954
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 1 deletions

View File

@ -18,7 +18,9 @@ import { test, expect } from "../../element-web-test";
import { logIntoElement } from "../crypto/utils"; import { logIntoElement } from "../crypto/utils";
test.describe("Overwrite login action", () => { 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); await logIntoElement(page, homeserver, credentials);
const userMenu = await app.openUserMenu(); const userMenu = await app.openUserMenu();