Skip to content

Commit

Permalink
Stabilize realm_settings_user_profile_enabled test (keycloak#27982)
Browse files Browse the repository at this point in the history
Fixes: keycloak#27653

Signed-off-by: Hynek Mlnarik <hmlnarik@redhat.com>
  • Loading branch information
hmlnarik committed Mar 18, 2024
1 parent 87e47fb commit 84f295e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -218,15 +218,15 @@ describe("User profile tabs", () => {
sidebarPage.goToUsers();
createUserPage
.goToCreateUser()
.setAttributeValue(emailAttributeName, "testuser8@gmail.com")
.setAttributeValue(emailAttributeName, `testuser8-${uuid()}@gmail.com`)
.assertAttributeFieldExists(attrName, false)
.create()
.assertNotificationCreated();

// Edit user
createUserPage
.assertAttributeFieldExists(attrName, false)
.setAttributeValue(emailAttributeName, "testuser9@gmail.com")
.setAttributeValue(emailAttributeName, `testuser9-${uuid()}@gmail.com`)
.update()
.assertNotificationUpdated();
});
Expand Down

0 comments on commit 84f295e

Please sign in to comment.