Skip to content

Commit

Permalink
Disable the login overwriting test (#12507)
Browse files Browse the repository at this point in the history
See conmment

Fixes element-hq/element-web#27363
  • Loading branch information
dbkr authored May 14, 2024
1 parent b283b18 commit 7a4ac57
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion playwright/e2e/login/overwrite_login.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 7a4ac57

Please sign in to comment.