From 0d14b03d71708a12bb947b05e00642ed7e16ead4 Mon Sep 17 00:00:00 2001 From: Richard van der Hoff <1389908+richvdh@users.noreply.github.com> Date: Mon, 3 Jul 2023 12:48:18 +0100 Subject: [PATCH] Enable verification cypress tests for Element R (#11169) --- cypress/e2e/crypto/verification.spec.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cypress/e2e/crypto/verification.spec.ts b/cypress/e2e/crypto/verification.spec.ts index cf07159cb5..31d3c83212 100644 --- a/cypress/e2e/crypto/verification.spec.ts +++ b/cypress/e2e/crypto/verification.spec.ts @@ -17,7 +17,7 @@ limitations under the License. import type { VerificationRequest, Verifier } from "matrix-js-sdk/src/crypto-api/verification"; import { CypressBot } from "../../support/bot"; import { HomeserverInstance } from "../../plugins/utils/homeserver"; -import { emitPromise, skipIfRustCrypto } from "../../support/util"; +import { emitPromise } from "../../support/util"; import { checkDeviceIsCrossSigned, doTwoWaySasVerification, logIntoElement, waitForVerificationRequest } from "./utils"; import { getToast } from "../../support/toasts"; @@ -26,7 +26,6 @@ describe("Device verification", () => { let homeserver: HomeserverInstance; beforeEach(() => { - skipIfRustCrypto(); cy.startHomeserver("default").then((data: HomeserverInstance) => { homeserver = data;