bullpen/app/tests/e2e/specs/test.cy.ts

7 lines
157 B
TypeScript

describe('My First Test', () => {
it('Visits the app root url', () => {
cy.visit('/')
cy.contains('#container', 'Ready to create an app?')
})
})