Files
web-hosts/domains/coppertone.tech/frontend/cypress/e2e/example.cy.ts
2025-12-26 13:38:04 +01:00

9 lines
167 B
TypeScript

// https://on.cypress.io/api
describe('My First Test', () => {
it('visits the app root url', () => {
cy.visit('/')
cy.contains('h1', 'You did it!')
})
})