Fix `A room with an edit is still read after restart` integ test (#12007)

pull/28217/head
Florian Duros 2023-12-06 17:59:10 +01:00 committed by GitHub
parent ab9604056d
commit 1ce569bfc2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 5 deletions

View File

@ -116,18 +116,18 @@ test.describe("Read receipts", () => {
// Then the room remains read
await util.assertStillRead(room2);
});
// XXX: fails because flaky: https://github.com/vector-im/element-web/issues/26341
test.skip("A room with an edit is still read after restart", async ({
test("A room with an edit is still read after restart", async ({
roomAlpha: room1,
roomBeta: room2,
util,
msg,
}) => {
// Given a message is marked as read
await util.goTo(room2);
await util.receiveMessages(room2, ["Msg1"]);
await util.assertRead(room2);
await util.goTo(room1);
await util.receiveMessages(room2, ["Msg1"]);
await util.assertUnread(room2, 1);
await util.markAsRead(room2);
await util.assertRead(room2);
// When an edit appears in the room
await util.receiveMessages(room2, [msg.editOf("Msg1", "Msg1 Edit1")]);