hub-site/cypress/e2e/example.cy.ts

9 lines
167 B
TypeScript
Raw Normal View History

2024-11-15 09:13:20 -08:00
// https://on.cypress.io/api
describe('My First Test', () => {
it('visits the app root url', () => {
cy.visit('/')
cy.contains('h1', 'You did it!')
})
})