Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Playwright: Enable skipped tests in high-level.spec.ts #12017

Merged
merged 1 commit into from
Dec 11, 2023
Merged
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
9 changes: 3 additions & 6 deletions playwright/e2e/read-receipts/high-level.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -157,8 +157,7 @@ test.describe("Read receipts", () => {
});

test.describe("Paging up", () => {
// XXX: Fails because flaky test https://github.com/vector-im/element-web/issues/26437
test.skip("Paging up through old messages after a room is read leaves the room read", async ({
test("Paging up through old messages after a room is read leaves the room read", async ({
page,
roomAlpha: room1,
roomBeta: room2,
Expand Down Expand Up @@ -297,8 +296,7 @@ test.describe("Read receipts", () => {
await util.assertUnreadThread("Root2");
await util.assertUnreadThread("Root3");
});
// XXX: fails because flaky: https://github.com/vector-im/element-web/issues/26331
test.skip("Looking in thread view to find old threads that were never read makes the room unread", async ({
test("Looking in thread view to find old threads that were never read makes the room unread", async ({
roomAlpha: room1,
roomBeta: room2,
util,
Expand Down Expand Up @@ -385,8 +383,7 @@ test.describe("Read receipts", () => {
await util.assertReadThread("Root2");
await util.assertReadThread("Root3");
});
// XXX: fails because we see a dot instead of an unread number - probably the server and client disagree
test.skip("After marking room as read based on a thread message, opening threads view to find old threads that were never read leaves the room read", async ({
test("After marking room as read based on a thread message, opening threads view to find old threads that were never read leaves the room read", async ({
roomAlpha: room1,
roomBeta: room2,
util,
Expand Down
Loading