0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-24 18:07:17 +01:00
posthog/cypress/integration/cohorts.js

10 lines
262 B
JavaScript
Raw Normal View History

describe('Cohorts', () => {
beforeEach(() => {
cy.get('[data-attr=menu-item-people]').click()
cy.get('[data-attr=menu-item-cohorts]').click()
})
it('Cohorts loaded', () => {
cy.get('h1').should('contain', 'Cohorts')
})
})