0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-28 09:16:49 +01:00
posthog/cypress/integration/dashboard.js

11 lines
303 B
JavaScript
Raw Normal View History

describe('Dashboards', () => {
beforeEach(() => {
cy.get('[data-attr=menu-item-dashboards]').click()
cy.location('pathname', { timeout: 6000 }).should('include', '/dashboard')
})
it('Dashboards loaded', () => {
cy.get('h1').should('contain', 'Dashboards')
})
})