Skip to content

Instantly share code, notes, and snippets.

@sonicoder86
Created April 15, 2020 18:28
Show Gist options
  • Save sonicoder86/fee501b550afa651dd514d7fd83f96cd to your computer and use it in GitHub Desktop.
Save sonicoder86/fee501b550afa651dd514d7fd83f96cd to your computer and use it in GitHub Desktop.
React Testing Crash Course - part 16
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