mirror of https://github.com/vector-im/riot-web
Disable flaky test (#12210)
parent
c1871ea59f
commit
5ffb921b1f
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue