0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-28 18:26:15 +01:00
posthog/cypress/integration/systemStatus.js

10 lines
343 B
JavaScript
Raw Normal View History

describe('System Status', () => {
it('System Status loaded', () => {
cy.location('pathname').should('eq', '/insights')
cy.wait(500)
cy.get('[data-attr=system-status-badge]').click()
cy.get('h1').should('contain', 'System Status')
cy.get('table').should('contain', 'Postgres events table')
})
})