New room list: add compose menu for spaces in header (#29347)

* feat(new room list): add compose menu in header for spaces

* test(new room list): add tests for space

* test(e2e new room list): update space test

* chore: formatting and reuse type var
This commit is contained in:
Florian Duros
2025-02-24 15:51:50 +00:00
committed by GitHub
parent 37136ecf46
commit 7d94fa9b03
3 changed files with 49 additions and 18 deletions
@@ -53,6 +53,6 @@ test.describe("Header section of the room list", () => {
const roomListHeader = getHeaderSection(page);
await expect(roomListHeader.getByRole("heading", { name: "MySpace" })).toBeVisible();
await expect(roomListHeader.getByRole("button", { name: "Add" })).not.toBeVisible();
await expect(roomListHeader.getByRole("button", { name: "Add" })).toBeVisible();
});
});