mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-28 00:46:45 +01:00
1c80aca907
* 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
10 lines
398 B
JavaScript
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')
|
|
})
|
|
})
|