Skip to content
This repository has been archived by the owner on Mar 13, 2024. It is now read-only.

E2E: fix valid name due to recent change #3043

Merged
merged 1 commit into from
Jul 2, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cypress/integration/login/signup_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ describe('Signup Email page', () => {

cy.get('#name_label').should('contain', 'Choose your username');
cy.get('#name').should('be.visible');
cy.get('#valid_name').should('contain', 'Username must begin with a letter, and contain between 3 to 22 lowercase characters made up of numbers, letters, and the symbols \'.\', \'-\' and \'_\'');
cy.get('#valid_name').should('contain', 'You can use lowercase letters, numbers, periods, dashes, and underscores.');

cy.get('#password_label').should('contain', 'Choose your password');
cy.get('#password').should('be.visible');
Expand Down