diff options
author | Ferdinand Thiessen <opensource@fthiessen.de> | 2023-06-29 00:08:21 +0200 |
---|---|---|
committer | Ferdinand Thiessen <opensource@fthiessen.de> | 2023-06-29 00:08:21 +0200 |
commit | 5e81a9e53d03a93bb6cd99e2b677d9ae20183a86 (patch) | |
tree | db0d98a81160cfb5d06ab740bec89ecc5be45aeb /tests | |
parent | 3fba4c55298d1b29e86607005d70a127721d98d7 (diff) | |
download | nextcloud-server-5e81a9e53d03a93bb6cd99e2b677d9ae20183a86.tar.gz nextcloud-server-5e81a9e53d03a93bb6cd99e2b677d9ae20183a86.zip |
fix: Add cypress test for changing password in the users list
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/acceptance/features/users.feature | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/tests/acceptance/features/users.feature b/tests/acceptance/features/users.feature index adb48d658fd..3d223ee12cf 100644 --- a/tests/acceptance/features/users.feature +++ b/tests/acceptance/features/users.feature @@ -126,18 +126,18 @@ Feature: users # And I see that the displayName cell for user user0 is done loading # Then I see that the displayName of user0 is user1 - Scenario: change password - Given I act as Jane - And I am logged in as the admin - And I open the User settings - And I see that the list of users contains the user user0 - When I toggle the edit mode for the user user0 - Then I see that the edit mode is on for user user0 - And I see that the password of user0 is "" - When I set the password for user0 to 123456 - And I see that the password cell for user user0 is done loading - # password input is emptied on change - Then I see that the password of user0 is "" +# Scenario: change password +# Given I act as Jane +# And I am logged in as the admin +# And I open the User settings +# And I see that the list of users contains the user user0 +# When I toggle the edit mode for the user user0 +# Then I see that the edit mode is on for user user0 +# And I see that the password of user0 is "" +# When I set the password for user0 to 123456 +# And I see that the password cell for user user0 is done loading +# # password input is emptied on change +# Then I see that the password of user0 is "" # Scenario: change email # Given I act as Jane |