Files
hammond/ui/tests/e2e/specs/home.e2e.js
Akhil Gupta d25c30a7b2 first commit
2021-05-29 15:20:50 +05:30

8 lines
190 B
JavaScript

describe('Home Page', () => {
it('has the correct title and heading', () => {
cy.visit('/')
cy.title().should('equal', 'Home | Hammond')
cy.contains('h1', 'Home Page')
})
})