mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-24 09:14:46 +01:00
167a79fa2f
Co-authored-by: yakkomajuri <yakko.majuri@gmail.com>
9 lines
335 B
JavaScript
9 lines
335 B
JavaScript
describe('System Status', () => {
|
|
it('System Status loaded', () => {
|
|
cy.get('[data-attr=system-status-badge]').click()
|
|
cy.get('h1').should('contain', 'System Status')
|
|
cy.get('table').should('contain', 'Postgres events table')
|
|
cy.get('table').should('contain', 'Redis current queue depth')
|
|
})
|
|
})
|