2021-11-10 00:29:05 +01:00
|
|
|
import { urls } from 'scenes/urls'
|
|
|
|
|
2020-10-15 12:34:32 +02:00
|
|
|
describe('System Status', () => {
|
|
|
|
it('System Status loaded', () => {
|
2021-11-10 00:29:05 +01:00
|
|
|
cy.location('pathname').should('eq', urls.savedInsights())
|
2021-05-20 16:42:26 +02:00
|
|
|
cy.wait(500)
|
2021-11-11 21:20:01 +01:00
|
|
|
cy.get('[data-attr=top-menu-toggle]').click()
|
2021-02-04 10:53:00 +01:00
|
|
|
cy.get('[data-attr=system-status-badge]').click()
|
2022-02-17 20:42:43 +01:00
|
|
|
cy.get('h1').should('contain', 'Instance status')
|
2022-01-03 15:26:54 +01:00
|
|
|
cy.get('table').should('contain', 'Events in ClickHouse')
|
2020-10-15 12:34:32 +02:00
|
|
|
})
|
|
|
|
})
|