mirror of
https://github.com/element-hq/element-web
synced 2024-11-23 17:56:01 +03:00
Fill cypress test high-level.spec.ts
> A receipt for the last unimportant event makes the room read, even if all are unimportant
(#11830)
* Fill cypress test `high-level.spec.ts` > `A receipt for the last unimportant event makes the room read, even if all are unimportant` * Test on `room2` instead of `room1`
This commit is contained in:
parent
b8f9ef7699
commit
b1e283dc42
1 changed files with 18 additions and 2 deletions
|
@ -156,7 +156,7 @@ describe("Read receipts", () => {
|
||||||
assertRead(room2);
|
assertRead(room2);
|
||||||
goTo(room1);
|
goTo(room1);
|
||||||
|
|
||||||
// When we receive important messages
|
// When we receive unimportant messages
|
||||||
receiveMessages(room2, [customEvent("org.custom.event", { body: "foobar" })]);
|
receiveMessages(room2, [customEvent("org.custom.event", { body: "foobar" })]);
|
||||||
|
|
||||||
// Then the room is still read
|
// Then the room is still read
|
||||||
|
@ -168,7 +168,23 @@ describe("Read receipts", () => {
|
||||||
// The room is unread again
|
// The room is unread again
|
||||||
assertUnread(room2, 1);
|
assertUnread(room2, 1);
|
||||||
});
|
});
|
||||||
it.skip("A receipt for the last unimportant event makes the room read, even if all are unimportant", () => {});
|
it("A receipt for the last unimportant event makes the room read, even if all are unimportant", () => {
|
||||||
|
// Display room 1
|
||||||
|
goTo(room1);
|
||||||
|
|
||||||
|
// The room 2 is read
|
||||||
|
assertRead(room2);
|
||||||
|
|
||||||
|
// We received 3 unimportant messages to room2
|
||||||
|
receiveMessages(room2, [
|
||||||
|
customEvent("org.custom.event", { body: "foobar1" }),
|
||||||
|
customEvent("org.custom.event", { body: "foobar2" }),
|
||||||
|
customEvent("org.custom.event", { body: "foobar3" }),
|
||||||
|
]);
|
||||||
|
|
||||||
|
// The room 2 is still read
|
||||||
|
assertStillRead(room2);
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
describe("Paging up", () => {
|
describe("Paging up", () => {
|
||||||
|
|
Loading…
Reference in a new issue