0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-29 19:16:37 +01:00
posthog/cypress/integration/systemStatus.js
2021-11-09 15:29:05 -08:00

12 lines
388 B
JavaScript

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=system-status-badge]').click()
cy.get('h1').should('contain', 'System Status')
cy.get('table').should('contain', 'Postgres events table')
})
})