From 5ffb921b1f545dc8ad255d93903f7ea051c216fc Mon Sep 17 00:00:00 2001 From: R Midhun Suresh Date: Fri, 2 Feb 2024 15:59:46 +0530 Subject: [PATCH] Disable flaky test (#12210) --- playwright/e2e/timeline/timeline.spec.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/playwright/e2e/timeline/timeline.spec.ts b/playwright/e2e/timeline/timeline.spec.ts index 32cc14bd46..19e38f79f7 100644 --- a/playwright/e2e/timeline/timeline.spec.ts +++ b/playwright/e2e/timeline/timeline.spec.ts @@ -552,7 +552,11 @@ test.describe("Timeline", () => { ); }); - test("should set inline start padding to a hidden event line", async ({ page, app, room }) => { + test("should set inline start padding to a hidden event line", async ({ page, app, room, cryptoBackend }) => { + test.skip( + cryptoBackend === "rust", + "Disabled due to screenshot test being flaky - https://github.com/element-hq/element-web/issues/26890", + ); await sendEvent(app.client, room.roomId); await page.goto(`/#/room/${room.roomId}`); await app.settings.setValue("showHiddenEventsInTimeline", null, SettingLevel.DEVICE, true);