mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-28 09:16:49 +01:00
25a053cda4
* Finish the local dev w/ proto setup * WIP manage events view * Add task, add interface etc * Move everything to 'manage events' view * Move all settings into single dropdown (can be reverted) * Urls for tabs * Fix migration * Clickhouse and humanize volume * Fix cypress test * Fix sidebar cypress * Fix cypress again * Fix some small issues * Address comments * Corect naming * Fix test' Co-authored-by: James Greenhill <fuziontech@gmail.com>
10 lines
397 B
JavaScript
10 lines
397 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 Event table')
|
|
cy.get('table').should('contain', 'Redis current queue depth')
|
|
})
|
|
})
|