mirror of https://github.com/vector-im/riot-web
Disable 'A room with an edit ... restart' because flaking on Rust
parent
94484692f8
commit
d0383e3cd5
|
@ -19,6 +19,7 @@ limitations under the License.
|
||||||
/// <reference types="cypress" />
|
/// <reference types="cypress" />
|
||||||
|
|
||||||
import { HomeserverInstance } from "../../plugins/utils/homeserver";
|
import { HomeserverInstance } from "../../plugins/utils/homeserver";
|
||||||
|
import { skipIfRustCrypto } from "../../support/util";
|
||||||
import {
|
import {
|
||||||
assertRead,
|
assertRead,
|
||||||
assertReadThread,
|
assertReadThread,
|
||||||
|
@ -179,6 +180,10 @@ describe("Read receipts", () => {
|
||||||
assertStillRead(room2);
|
assertStillRead(room2);
|
||||||
});
|
});
|
||||||
it("A room with an edit is still read after restart", () => {
|
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
|
// Given a message is marked as read
|
||||||
goTo(room2);
|
goTo(room2);
|
||||||
receiveMessages(room2, ["Msg1"]);
|
receiveMessages(room2, ["Msg1"]);
|
||||||
|
|
Loading…
Reference in New Issue