riku
2024-09-27 1abb6a9ca01cc76f271542a063d1b19839448019
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!')
  })
})