Last active
July 22, 2020 16:22
-
-
Save sonicoder86/7ca68e387079f6b46e11c60253b68acf to your computer and use it in GitHub Desktop.
Svelte Testing Crash Course - part 16
This file contains hidden or 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
describe('New todo', () => { | |
it('it should change info', () => { | |
cy.visit('/'); | |
cy.contains('.info', 'Click to modify'); | |
cy.get('button').click(); | |
cy.contains('.info', 'Modified by click'); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment