mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-24 18:07:17 +01:00
13 lines
443 B
TypeScript
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')
|
|
})
|
|
})
|