Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
Disable "can receive a verification request when there is no existing…
Browse files Browse the repository at this point in the history
… DM" for EWR (#11788)
  • Loading branch information
florianduros authored Oct 24, 2023
1 parent 9eb4410 commit 85b1588
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion cypress/e2e/crypto/verification.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import type { MatrixClient } from "matrix-js-sdk/src/matrix";
import type { VerificationRequest, Verifier } from "matrix-js-sdk/src/crypto-api";
import { CypressBot } from "../../support/bot";
import { HomeserverInstance } from "../../plugins/utils/homeserver";
import { emitPromise } from "../../support/util";
import { emitPromise, skipIfRustCrypto } from "../../support/util";
import {
checkDeviceIsConnectedKeyBackup,
checkDeviceIsCrossSigned,
Expand Down Expand Up @@ -317,6 +317,10 @@ describe("User verification", () => {
});

it("can receive a verification request when there is no existing DM", () => {
// Extremely flaky with rust crypto
// see https://github.com/vector-im/element-web/issues/26420
skipIfRustCrypto();

cy.bootstrapCrossSigning(aliceCredentials);

// the other user creates a DM
Expand Down

0 comments on commit 85b1588

Please sign in to comment.