Flaky Cypress test - `should handle long room address and long room name` on right-panel.spec.ts (#10835)
* wait for room alias to be set before closing modal * retrigger sonarpull/28217/head
parent
a18e66c69b
commit
675756a699
|
@ -73,10 +73,12 @@ describe("RightPanel", () => {
|
|||
cy.openRoomSettings();
|
||||
|
||||
// Set a local room address
|
||||
cy.findByTestId("local-address-fieldset").within(() => {
|
||||
cy.get(".mx_AliasSettings_localAddresses").click();
|
||||
cy.findByLabelText("Room address").type(ROOM_ADDRESS_LONG);
|
||||
cy.contains(".mx_SettingsFieldset", "Local Addresses").within(() => {
|
||||
cy.findByRole("textbox").type(ROOM_ADDRESS_LONG);
|
||||
cy.findByRole("button", { name: "Add" }).click();
|
||||
cy.findByText(`#${ROOM_ADDRESS_LONG}:localhost`)
|
||||
.should("have.class", "mx_EditableItem_item")
|
||||
.should("exist");
|
||||
});
|
||||
|
||||
cy.closeDialog();
|
||||
|
|
Loading…
Reference in New Issue