0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-24 18:07:17 +01:00
posthog/cypress/e2e/systemStatus.cy.ts
2022-12-30 21:27:26 +01:00

13 lines
443 B
TypeScript

import { urls } from 'scenes/urls'
describe('System Status', () => {
it('System Status loaded', () => {
cy.location('pathname').should('eq', urls.savedInsights())
cy.wait(500)
cy.get('[data-attr=top-menu-toggle]').click()
cy.get('[data-attr=system-status-badge]').click()
cy.get('h1').should('contain', 'Instance status')
cy.get('table').should('contain', 'Events in ClickHouse')
})
})