8 lines
180 B
TypeScript
8 lines
180 B
TypeScript
describe('Dashboard', () => {
|
|
it('opens the page correctly', function () {
|
|
cy.visit('/')
|
|
cy.wait(2000)
|
|
cy.contains('Connecting to localhost')
|
|
})
|
|
})
|