forked from chaynHQ/bloom-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add create access code badoo tests (chaynHQ#1102)
- Loading branch information
Showing
1 changed file
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
describe('Create access code page should display', () => { | ||
const badooEmail = Cypress.env('CYPRESS_BADOO_PARTNER_ADMIN_EMAIL') as string; | ||
const badooPassword = Cypress.env('CYPRESS_BADOO_PARTNER_ADMIN_PASSWORD'); | ||
|
||
before(() => { | ||
cy.cleanUpTestState(); | ||
cy.logInWithEmailAndPassword(badooEmail, badooPassword); | ||
}); | ||
|
||
beforeEach(() => { | ||
cy.visit('/partner-admin/create-access-code'); | ||
}); | ||
|
||
it('header section', () => { | ||
cy.get('h2').should('contain', 'Create access codes'); | ||
cy.checkImage('Badoo logo', 'badoo_logo'); | ||
}); | ||
|
||
it('Create access codes panel', () => { | ||
cy.get('h2').should('contain', 'Create access codes'); | ||
cy.get('p').should( | ||
'contain', | ||
'Use this form to create an access code every time you want to give someone access to Bloom.', | ||
); | ||
|
||
cy.get('legend').contains('Select support type offered to this user'); | ||
cy.get('input') | ||
.should('exist') | ||
.should('have.prop', 'type', 'radio') | ||
.should('have.value', 'therapy') | ||
.parents('label') | ||
.contains('Courses, 1:1 chat and six therapy sessions'); | ||
|
||
cy.get('button').contains('Create access codes').should('have.prop', 'type', 'submit'); | ||
}); | ||
|
||
after(() => { | ||
cy.logout(); | ||
}); | ||
}); |