mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-24 09:14:46 +01:00
11 lines
256 B
JavaScript
11 lines
256 B
JavaScript
|
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')
|
||
|
})
|
||
|
})
|