Skip to content

Instantly share code, notes, and snippets.

@kianaditya
Created September 4, 2020 12:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kianaditya/73af30220dd7b1c6fef1fc7b017f86cc to your computer and use it in GitHub Desktop.
Save kianaditya/73af30220dd7b1c6fef1fc7b017f86cc to your computer and use it in GitHub Desktop.
/// <reference types="Cypress" />
describe('Tests todo list', () => {
it('Checks todo render', () => {
cy.visit('/')
cy.get('h3')
.should('have.length', 200)
.first()
.should('have.text', 'delectus aut autem')
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment