Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,11 @@ test.describe("Cryptography", function () {
// Log in again, and see how the message looks.
await logIntoElement(page, credentials);
// Dismiss the "Back up your chats" toast, otherwise it gets in the way of clicking the room list
await page.getByRole("button", { name: "Dismiss" }).click();
await page
.getByRole("alert")
.filter({ hasText: "Back up your chats" })
.getByRole("button", { name: "Dismiss" })
.click();
await app.viewRoomByName("Test room");
const lastTile = page.locator(".mx_EventTile").last();
await expect(lastTile).toContainText("Historical messages are not available on this device");
Expand Down
Loading