feiyu02
2025-07-21 5be9679fb4288936b576cf3d1f1548af1c4151b8
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!')
  })
})