Skip to content

Commit

Permalink
fix:fixed register negative blank password
Browse files Browse the repository at this point in the history
  • Loading branch information
Toto-hitori committed May 5, 2024
1 parent 322fca5 commit 5ae916e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webapp/e2e/steps/register_negative_blank_password.steps.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ defineFeature(feature, test => {
await expect(page).toFill("input[id='user'", user);
await expect(page).toFill("input[id='username'", username);
await expect(page).toFill("#password", ""); // Blank password
await expect(page).toFill("input[data-testid='repeat-password']", "");
await expect(page).toFill("input[data-testid='repeat-password']", "test3");

});

Expand Down

0 comments on commit 5ae916e

Please sign in to comment.