0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-28 17:54:41 +01:00
posthog/cypress/integration/systemStatus.js
Michael Matloka 1c80aca907
Cleaned up system status page (#2682)
* Polish system status page

* Show system health badge to is_staff users on Cloud

* Update Cypress test

* Correct inconsistent scene name

* Use RDBMS enum instead of constants

* Add "Analytics database in use" to System Status

* Fix typing
2020-12-09 13:57:12 +01:00

10 lines
398 B
JavaScript

describe('System Status', () => {
it('System Status loaded', () => {
cy.get('[data-attr=menu-item-settings]').click()
cy.get('[data-attr=menu-item-instance-status]').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')
})
})