mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-24 18:07:17 +01:00
10 lines
220 B
JavaScript
10 lines
220 B
JavaScript
|
describe('Dashboards', () => {
|
||
|
beforeEach(() => {
|
||
|
cy.get('[data-attr=menu-item-dashboards]').click()
|
||
|
})
|
||
|
|
||
|
it('Dashboards loaded', () => {
|
||
|
cy.get('h1').should('contain', 'Dashboards')
|
||
|
})
|
||
|
})
|