pataar cc1615acd4
test: add cypress for e2e testing (#655)
Co-authored-by: Stefan Dej <meteyou@gmail.com>
2022-02-18 21:04:44 +01:00

8 lines
180 B
TypeScript

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