0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-22 08:40:03 +01:00
posthog/cypress/e2e/systemStatus.cy.ts
2024-07-09 09:59:53 +00:00

11 lines
408 B
TypeScript

describe('System Status', () => {
it('System Status loaded', () => {
cy.location('pathname').should('eq', '/project/1/insights')
cy.wait(500)
cy.get('[data-attr=menu-item-me]').click()
cy.get('[data-attr=top-menu-instance-panel]').click()
cy.get('h1').should('contain', 'Instance panel')
cy.get('table').should('contain', 'Events in ClickHouse')
})
})