Remove performance metrics from cypress (#9467)

They are unfortunately unreliable and have been broken since June anyways.
This commit is contained in:
Travis Ralston 2022-10-20 00:52:17 -06:00 committed by GitHub
parent dade38086c
commit 6fe8744e4d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 0 additions and 176 deletions

View file

@ -54,12 +54,10 @@ describe("Create Room", () => {
// Fill room address
cy.get('[label="Room address"]').type("test-room-1");
// Submit
cy.startMeasuring("from-submit-to-room");
cy.get(".mx_Dialog_primary").click();
});
cy.url().should("contain", "/#/room/#test-room-1:localhost");
cy.stopMeasuring("from-submit-to-room");
cy.contains(".mx_RoomHeader_nametext", name);
cy.contains(".mx_RoomHeader_topic", topic);
});