From 66e2591792e89862229e673725cfe47ec9bb8a7c Mon Sep 17 00:00:00 2001 From: Jon Koops Date: Fri, 1 Mar 2024 16:30:55 +0100 Subject: [PATCH] Fix flaky Cypress test for user profile (#27427) Closes #27337 Signed-off-by: Jon Koops --- .../cypress/e2e/realm_settings_user_profile_enabled.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/apps/admin-ui/cypress/e2e/realm_settings_user_profile_enabled.spec.ts b/js/apps/admin-ui/cypress/e2e/realm_settings_user_profile_enabled.spec.ts index 581e1533bd..703f2424d5 100644 --- a/js/apps/admin-ui/cypress/e2e/realm_settings_user_profile_enabled.spec.ts +++ b/js/apps/admin-ui/cypress/e2e/realm_settings_user_profile_enabled.spec.ts @@ -386,7 +386,7 @@ describe("User profile tabs", () => { }); it("Checks that attribute with select-annotation is displayed and editable when user is created/edited", () => { - const userName = "select-test-user"; + const userName = `select-test-user-${uuid()}`; const attrName = "select-test-attr"; const opt1 = "opt1"; const opt2 = "opt2";