0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-25 11:17:50 +01:00
posthog/cypress/e2e/systemStatus.cy.ts

13 lines
441 B
TypeScript
Raw Normal View History

2021-11-10 00:29:05 +01:00
import { urls } from 'scenes/urls'
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=system-status-badge]').click()
cy.get('h1').should('contain', 'Instance status')
cy.get('table').should('contain', 'Events in ClickHouse')
})
})