Last active
February 25, 2019 22:39
-
-
Save yagudaev/81b9ed942261196b0398a6bb6dd21d20 to your computer and use it in GitHub Desktop.
Testing Your Frontend with Cypress.io Framework
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
it('A Pro User logs in and sees a thank you message for the first time', () => { | |
loginWith('[email protected]', 'passsword') | |
expect(cy.contains('Thank you for supporting us!')).to.exist | |
}) | |
it('A Pro User logs in and sees and sees a welcome message', () => { | |
loginWith('[email protected]', 'passsword') | |
expect(cy.contains('Welcome back John')).to.exist | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment