UNPKG

@revoloo/cypress6

Version:

Cypress.io end to end testing tool

13 lines (11 loc) 374 B
/// <reference types="cypress" /> // this spec file will be bundled using the same Webpack options // as the React App itself. See ../plugins/index.js describe('Todo app', () => { it('works', () => { cy.visit('/') cy.get('.todo').should('have.length', 3) cy.get('input').type('Write Cypress tests{enter}') cy.get('.todo').should('have.length', 4) }) })