From 4ef38a783acb8301b76accf0ac4f1e65a9cfa8b1 Mon Sep 17 00:00:00 2001 From: Jon Koops Date: Tue, 5 Mar 2024 17:29:40 +0100 Subject: [PATCH] Fix broken tests for authenticators in Admin Console (#27566) Closes #27565 Signed-off-by: Jon Koops --- js/apps/admin-ui/cypress/e2e/authentication_policies.spec.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/js/apps/admin-ui/cypress/e2e/authentication_policies.spec.ts b/js/apps/admin-ui/cypress/e2e/authentication_policies.spec.ts index aa9bf73159..89028fedd5 100644 --- a/js/apps/admin-ui/cypress/e2e/authentication_policies.spec.ts +++ b/js/apps/admin-ui/cypress/e2e/authentication_policies.spec.ts @@ -28,7 +28,10 @@ describe("Policies", () => { ); otpPoliciesPage.setPolicyType("hotp").increaseInitialCounter().save(); masthead.checkNotificationMessage("OTP policy successfully updated"); - otpPoliciesPage.checkSupportedApplications("FreeOTP"); + otpPoliciesPage.checkSupportedApplications( + "FreeOTP", + "Google Authenticator", + ); }); });