diff options
author | Jacob Vosmaer <contact@jacobvosmaer.nl> | 2015-01-15 14:02:09 +0100 |
---|---|---|
committer | Jacob Vosmaer <contact@jacobvosmaer.nl> | 2015-01-15 14:10:13 +0100 |
commit | b79ada97bb8e85c85472e0cee269a28c0e6d5ef7 (patch) | |
tree | a4bbc89243c388ed23c1d4be603886e574125bf6 /features/profile | |
parent | 1e0f36b42a7e8fe8a4549b31233262fedfda742c (diff) | |
download | gitlab-ce-b79ada97bb8e85c85472e0cee269a28c0e6d5ef7.tar.gz |
Remove password strength indicator
We were having the following issues:
- the indicator would sometimes stay red even if the password that was
entered was long enough;
- the indicator had a middle yellow signal: what does that mean?
- the red/green backgrounds were not color-blind-friendly.
Diffstat (limited to 'features/profile')
-rw-r--r-- | features/profile/profile.feature | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/features/profile/profile.feature b/features/profile/profile.feature index fd132e1cd80..d586167cdf5 100644 --- a/features/profile/profile.feature +++ b/features/profile/profile.feature @@ -97,22 +97,3 @@ Feature: Profile Given I visit profile design page When I change my code preview theme Then I should receive feedback that the changes were saved - - @javascript - Scenario: I see the password strength indicator - Given I visit profile password page - When I try to set a weak password - Then I should see the input field yellow - - @javascript - Scenario: I see the password strength indicator error - Given I visit profile password page - When I try to set a short password - Then I should see the input field red - And I should see the password error message - - @javascript - Scenario: I see the password strength indicator with success - Given I visit profile password page - When I try to set a strong password - Then I should see the input field green |