Disable flaky test (#12210)

pull/28217/head
R Midhun Suresh 2024-02-02 15:59:46 +05:30 committed by GitHub
parent c1871ea59f
commit 5ffb921b1f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 1 deletions

View File

@ -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);