Skip to content

Commit

Permalink
Removed after feedback as it is duplicated
Browse files Browse the repository at this point in the history
  • Loading branch information
boodland committed Aug 26, 2024
1 parent 0d29bf8 commit 1b4620b
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions cypress/integration/welcome.badoo.cy.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,20 +72,6 @@ describe('Welcome badoo page should display', () => {
cy.get(labelAccessCodeTag).should('exist').should('have.attr', 'for', 'accessCode');
cy.get(inputAccessCodeTag).should('exist');
});
describe('navigate to register page when clicking get started action', () => {
it('without action', () => {
const registerPartnerBadooUrl = '/auth/register?partner=badoo';
cy.get('button').contains('Get started').click();
cy.checkPageUrl(registerPartnerBadooUrl);
});
it('with action code', () => {
const actionCode = 'actionCode';
const registerPartnerBadooUrl = `/auth/register?partner=badoo&code=${actionCode}`;
cy.get(inputAccessCodeTag).type(actionCode);
cy.get('button').contains('Get started').click();
cy.checkPageUrl(registerPartnerBadooUrl);
});
});
});
describe('for a public logged in user', () => {
before(() => {
Expand Down

0 comments on commit 1b4620b

Please sign in to comment.