Created
September 4, 2020 12:50
-
-
Save kianaditya/73af30220dd7b1c6fef1fc7b017f86cc to your computer and use it in GitHub Desktop.
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
/// <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