Disable 'A room with an edit ... restart' because flaking on Rust

This commit is contained in:
Andy Balaam 2023-11-10 11:26:30 +00:00
parent 94484692f8
commit d0383e3cd5

View file

@ -19,6 +19,7 @@ limitations under the License.
/// <reference types="cypress" />
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"]);