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

Commit 5ffb921

Browse files
Disable flaky test (#12210)
1 parent c1871ea commit 5ffb921

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

playwright/e2e/timeline/timeline.spec.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -552,7 +552,11 @@ test.describe("Timeline", () => {
552552
);
553553
});
554554

555-
test("should set inline start padding to a hidden event line", async ({ page, app, room }) => {
555+
test("should set inline start padding to a hidden event line", async ({ page, app, room, cryptoBackend }) => {
556+
test.skip(
557+
cryptoBackend === "rust",
558+
"Disabled due to screenshot test being flaky - https://github.com/element-hq/element-web/issues/26890",
559+
);
556560
await sendEvent(app.client, room.roomId);
557561
await page.goto(`/#/room/${room.roomId}`);
558562
await app.settings.setValue("showHiddenEventsInTimeline", null, SettingLevel.DEVICE, true);

0 commit comments

Comments
 (0)