6 lines
156 B
TypeScript
Raw Normal View History

2023-10-23 18:08:28 +03:00
describe('My First Test', () => {
it('Visits the app root url', () => {
cy.visit('/')
cy.contains('#container', 'Ready to create an app?')
})
})