From 1c553eae4ed58cd508f87322bc0b2f6be01b7b99 Mon Sep 17 00:00:00 2001 From: Richard van der Hoff <1389908+richvdh@users.noreply.github.com> Date: Tue, 3 Oct 2023 22:20:11 +0100 Subject: [PATCH] Skip flaky cypress test on rust crypto (#11710) --- cypress/e2e/crypto/verification.spec.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cypress/e2e/crypto/verification.spec.ts b/cypress/e2e/crypto/verification.spec.ts index 0649366507..77e427c91f 100644 --- a/cypress/e2e/crypto/verification.spec.ts +++ b/cypress/e2e/crypto/verification.spec.ts @@ -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, @@ -123,6 +123,7 @@ describe("Device verification", () => { }); it("Verify device during login with QR code", () => { + skipIfRustCrypto(); // https://github.com/vector-im/element-web/issues/26293 logIntoElement(homeserver.baseUrl, aliceBotClient.getUserId(), aliceBotClient.__cypress_password); // Launch the verification request between alice and the bot