mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-29 19:16:37 +01:00
12 lines
388 B
JavaScript
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')
|
|
})
|
|
})
|