0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-24 09:14:46 +01:00
posthog/cypress/integration/sessions.js
Marius Andra ef2b6acda0
Misc fixes from 4571 (#4658)
* simplify cypress nav menu clicks

* clean unused annotations code

* don't blank all cohorts when deleting one

* add data-test-filters-loading to better target loading indicators in tests
2021-06-09 16:58:34 +02:00

11 lines
258 B
JavaScript

describe('Sessions', () => {
beforeEach(() => {
cy.clickNavMenu('sessions')
})
it('Sessions Table loaded', () => {
cy.get('h1').should('contain', 'Sessions')
cy.get('[data-attr=sessions-table]').should('exist')
})
})