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

Element-R: Disable can receive a verification request when there is no existing DM cypress test for EWR #11788

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading