8 lines
168 B
TypeScript
8 lines
168 B
TypeScript
describe('App', () => {
|
|
it('redirects root to step1', () => {
|
|
cy.visit('/')
|
|
cy.url().should('include', '/step1')
|
|
cy.get('.step1').should('exist')
|
|
})
|
|
})
|