mirror of
https://github.com/element-hq/element-web
synced 2024-11-27 11:47:23 +03:00
Disable 'A room with an edit ... restart' because flaking on Rust
This commit is contained in:
parent
94484692f8
commit
d0383e3cd5
1 changed files with 5 additions and 0 deletions
|
@ -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"]);
|
||||
|
|
Loading…
Reference in a new issue