0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-28 18:26:15 +01:00
posthog/cypress/integration/home.js

11 lines
228 B
JavaScript
Raw Normal View History

describe('Home', () => {
beforeEach(() => {
cy.visit('/home')
cy.location('pathname').should('include', '/home')
})
it('Home loaded', () => {
cy.get('h1').should('contain', 'Home')
})
})