mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-28 17:54:41 +01:00
11 lines
228 B
JavaScript
11 lines
228 B
JavaScript
describe('Home', () => {
|
|
beforeEach(() => {
|
|
cy.visit('/home')
|
|
cy.location('pathname').should('include', '/home')
|
|
})
|
|
|
|
it('Home loaded', () => {
|
|
cy.get('h1').should('contain', 'Home')
|
|
})
|
|
})
|