From 0fcc1f45d992950c2f61cb1fa4e35eeaa55887ce Mon Sep 17 00:00:00 2001 From: Kegan Dougal Date: Mon, 23 Jan 2023 13:18:05 +0000 Subject: [PATCH] Remove flakey test which wasn't a useful test of anything --- cypress/e2e/sliding-sync/sliding-sync.ts | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/cypress/e2e/sliding-sync/sliding-sync.ts b/cypress/e2e/sliding-sync/sliding-sync.ts index 1b2642eeb4..8689bd2088 100644 --- a/cypress/e2e/sliding-sync/sliding-sync.ts +++ b/cypress/e2e/sliding-sync/sliding-sync.ts @@ -102,21 +102,6 @@ describe("Sliding Sync", () => { }); }; - // sanity check everything works - it("should correctly render expected messages", () => { - cy.get("@roomId").then((roomId) => cy.visit("/#/room/" + roomId)); - cy.setSettingValue("layout", null, SettingLevel.DEVICE, Layout.IRC); - - // Wait until configuration is finished - cy.contains( - ".mx_RoomView_body .mx_GenericEventListSummary .mx_GenericEventListSummary_summary", - "created and configured the room.", - ); - - // Click "expand" link button - cy.get(".mx_GenericEventListSummary_toggle[aria-expanded=false]").click(); - }); - it("should render the Rooms list in reverse chronological order by default and allowing sorting A-Z", () => { // create rooms and check room names are correct cy.createRoom({ name: "Apple" }).then(() => cy.contains(".mx_RoomSublist", "Apple"));