diff --git a/cypress/e2e/read-receipts/editing-messages.spec.ts b/cypress/e2e/read-receipts/editing-messages.spec.ts index c5ccb77750..6ab2da349e 100644 --- a/cypress/e2e/read-receipts/editing-messages.spec.ts +++ b/cypress/e2e/read-receipts/editing-messages.spec.ts @@ -19,6 +19,7 @@ limitations under the License. /// import { HomeserverInstance } from "../../plugins/utils/homeserver"; +import { skipIfRustCrypto } from "../../support/util"; import { assertRead, assertReadThread, @@ -179,6 +180,10 @@ describe("Read receipts", () => { assertStillRead(room2); }); it("A room with an edit is still read after restart", () => { + // Flaky with rust crypto + // See https://github.com/vector-im/element-web/issues/26341 + skipIfRustCrypto(); + // Given a message is marked as read goTo(room2); receiveMessages(room2, ["Msg1"]);