From ca5ab09f3b9dd51fd0534a1b1c8c285570b7bd78 Mon Sep 17 00:00:00 2001 From: Richard van der Hoff <1389908+richvdh@users.noreply.github.com> Date: Wed, 24 Jan 2024 09:54:14 +0000 Subject: [PATCH] Disable failing playwright test (#12176) This is the first test in the file, so it's possible that the failure will move to the next test. But let's give it a try. --- playwright/e2e/read-receipts/read-receipts.spec.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/playwright/e2e/read-receipts/read-receipts.spec.ts b/playwright/e2e/read-receipts/read-receipts.spec.ts index f2bad62dd0..36f74e2c64 100644 --- a/playwright/e2e/read-receipts/read-receipts.spec.ts +++ b/playwright/e2e/read-receipts/read-receipts.spec.ts @@ -107,7 +107,12 @@ test.describe("Read receipts", () => { await page.goto(`/#/room/${selectedRoomId}`); }); - test("With sync accumulator, considers main thread and unthreaded receipts #24629", async ({ page, app, bot }) => { + // Disabled due to flakiness: https://github.com/element-hq/element-web/issues/26895 + test.skip("With sync accumulator, considers main thread and unthreaded receipts #24629", async ({ + page, + app, + bot, + }) => { // Details are in https://github.com/vector-im/element-web/issues/24629 // This proves we've fixed one of the "stuck unreads" issues.