blob: 7a8c909fd86b8ae6090e0e060887805d13b622be (
plain) (
blame)
1
2
3
4
5
6
7
8
|
// https://docs.cypress.io/api/introduction/api.html
describe('My First Test', () => {
it('visits the app root url', () => {
cy.visit('/')
cy.contains('h1', 'You did it!')
})
})
|