0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-24 09:14:46 +01:00
posthog/cypress/integration/paths.js

11 lines
256 B
JavaScript
Raw Normal View History

describe('Paths', () => {
beforeEach(() => {
cy.get('[data-attr=menu-item-paths]').click()
})
it('Paths loaded', () => {
cy.get('h1').should('contain', 'Paths')
cy.get('[data-attr=paths-viz]').should('exist')
})
})