0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-28 00:46:45 +01:00
posthog/cypress/integration/sessions.js

11 lines
258 B
JavaScript
Raw Normal View History

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