Files
2026-03-17 13:07:43 +01:00

9 lines
211 B
JavaScript

// https://docs.cypress.io/api/introduction/api.html
describe('My First Test', () => {
it('Visits the app root url', () => {
cy.visit('/')
cy.contains('#container', 'Ready to create an app?')
})
})