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

This commit is contained in:
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

View file

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