1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-07-28 15:22:05 +03:00

Fix E2E icon display in room header (#12545)

* Fix E2E icon display

* Add e2e test
This commit is contained in:
Florian Duros
2024-05-20 18:08:50 +02:00
committed by GitHub
parent 1bb70c5b3b
commit f6e919021a
3 changed files with 27 additions and 0 deletions

View File

@ -276,4 +276,26 @@ test.describe("Room Header", () => {
await expect(header).toMatchScreenshot("room-header-with-apps-button-not-highlighted.png");
});
});
test.describe("with encryption", () => {
test("should render the E2E icon and the buttons", async ({ page, app, user }) => {
// Create an encrypted room
await app.client.createRoom({
name: "Test Encrypted Room",
initial_state: [
{
type: "m.room.encryption",
state_key: "",
content: {
algorithm: "m.megolm.v1.aes-sha2",
},
},
],
});
await app.viewRoomByName("Test Encrypted Room");
const header = page.locator(".mx_LegacyRoomHeader");
await expect(header).toMatchScreenshot("encrypted-room-header.png");
});
});
});

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.4 KiB