Last active
October 11, 2018 19:26
-
-
Save giltayar/846ba1bc906285b22f042ece7595dcbe to your computer and use it in GitHub Desktop.
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
describe(`TodoMVC using Cypress`, function () { | |
it('can add todos and then delete them', () => { | |
// visit the todomvc application | |
cy.visit('http://todomvc.com/examples/react/#/') | |
// type a new todo into the "new todo" input field. | |
cy.get('.new-todo').type('Cook dinner{enter}') | |
// ensure that a new todo was created correctly | |
cy.get('.view > label').should('have.text', 'Cook dinner') | |
// Add another todo and asser that it was added to. | |
cy.get('.new-todo').type('Clean house{enter}').then(() => {debugger}) | |
cy.get('.view > label').eq(1).should('have.text', 'Clean house') | |
// now check the toggle, to make it "done". | |
cy.get('.toggle').eq(1).click() | |
cy.contains('1 item left').should('exist') | |
}) | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment