[Sprint/KiltedKoala](feat): Added e2e test for registration
Closes #1638 (closed)
2/3 threads resolved
added MR::Awaiting Review Squad::Green scoped labels
approved this merge request
added 9 commits
- 1b662ff0...6d942fb6 - 8 commits from branch
master
- 39ba0928 - Merge branch 'master' into feat/registration-e2e-1638
- 1b662ff0...6d942fb6 - 8 commits from branch
added 105 commits
- 39ba0928...2be70043 - 102 commits from branch
master
- 81a263c1 - Updated registration tests
- 516f7281 - Merge branch 'master' of gitlab.com:minds/front into feat/registration-e2e-1638
- bbd3d77a - Fixed up registration test
Toggle commit list- 39ba0928...2be70043 - 102 commits from branch
approved this merge request
unapproved this merge request
- Last updated by Ben Hayward
38 //type values 39 cy.get(usernameField).focus().type(username); 40 cy.get(emailField).focus().type(email); 41 cy.get(passwordField).focus().type(password); 42 43 cy.get(password2Field).focus().type(password); 44 cy.get(checkbox).click(); 45 46 //submit 47 cy.get(submitButton).click() 48 .wait('@register').then((xhr) => { 49 expect(xhr.status).to.equal(200); 50 }); 51 52 //onboarding modal shown 53 cy.get('m-onboarding--topics > div > h2:nth-child(1)') - Developer
Let's stop using these nth child selectors
changed this line in version 4 of the diff
- Developer
Funnily enough, literally getting rid of the get call here achieves that, because the call to contains is all thats needed to find the text in the DOM.
- Resolved by Ben Hayward
- Resolved by Ben Hayward
added MR::Requires Changes scoped label and automatically removed MR::Awaiting Review label
resolved all threads
added Squad::Yellow scoped label and automatically removed Squad::Green label