Skip to content

Commit

Permalink
fix: fixed the frontend tests
Browse files Browse the repository at this point in the history
  • Loading branch information
KamilPawel committed Jun 25, 2023
1 parent ffe6e1d commit 45e4df4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions portal/tests/cypress/integration/independentStudent.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ describe("Independent student", () => {
testRegistration(cy.signupAsIndependentStudent,["Test Name", "[email protected]", "pass", "pass"],
false, PASSWORD_TOO_WEAK_MESSAGE);

testRegistration(cy.signupAsIndependentStudent,["Test Name", "[email protected]", "Password1!", "Password2!"],
testRegistration(cy.signupAsIndependentStudent,["Test Name", "[email protected]", "£EDCVFR$5tgb", "%TGBNHY^7ujm"],
false, PASSWORD_DO_NOT_MATCH_MESSAGE);

testRegistration(cy.signupAsIndependentStudent,["///", "[email protected]", "Password1!", "Password1!"],
testRegistration(cy.signupAsIndependentStudent,["///", "[email protected]", "£EDCVFR$5tgb", "£EDCVFR$5tgb"],
false, INVALID_NAME_MESSAGE);
});
});

0 comments on commit 45e4df4

Please sign in to comment.