autofocus password field on password reset page, and remove static password length message

This commit is contained in:
Neil Lalonde
2017-02-06 12:45:47 -05:00
parent 84af84dc52
commit e82240fbd9
2 changed files with 1 additions and 3 deletions

View File

@@ -33,7 +33,6 @@ test("Password Reset Page", () => {
visit("/users/password-reset/myvalidtoken");
andThen(() => {
ok(exists(".password-reset input"), "shows the input");
ok(find('.password-reset .instructions').html().indexOf('8 char') !== -1, "shows correct min length");
});
fillIn('.password-reset input', 'perf3ctly5ecur3');