mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-24 09:14:46 +01:00
25a053cda4
* Finish the local dev w/ proto setup * WIP manage events view * Add task, add interface etc * Move everything to 'manage events' view * Move all settings into single dropdown (can be reverted) * Urls for tabs * Fix migration * Clickhouse and humanize volume * Fix cypress test * Fix sidebar cypress * Fix cypress again * Fix some small issues * Address comments * Corect naming * Fix test' Co-authored-by: James Greenhill <fuziontech@gmail.com>
11 lines
279 B
JavaScript
11 lines
279 B
JavaScript
describe('Sessions', () => {
|
|
beforeEach(() => {
|
|
cy.get('[data-attr=menu-item-sessions]').click()
|
|
})
|
|
|
|
it('Sessions Table loaded', () => {
|
|
cy.get('h1').should('contain', 'Sessions')
|
|
cy.get('[data-attr=sessions-table]').should('exist')
|
|
})
|
|
})
|