0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-28 18:26:15 +01:00
posthog/cypress/e2e/systemStatus.cy.ts
Michael Matloka 25e56f38b0
chore(navigation): Clean up account popover (#19904)
* Rename `SitePopover` to `AccountPopover`

* Condense "Instance" section of account popover and use new icons

* Use small radius for `Lettermark`

* Convert status descriptions casing in general

* Link to async migrations again

* Update UI snapshots for `chromium` (2)

---------

Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
2024-01-24 07:48:33 +00:00

13 lines
444 B
TypeScript

import { urls } from 'scenes/urls'
describe('System Status', () => {
it('System Status loaded', () => {
cy.location('pathname').should('eq', '/project/1/insights')
cy.wait(500)
cy.get('[data-attr=menu-item-me]').click()
cy.get('[data-attr=top-menu-instance-panel]').click()
cy.get('h1').should('contain', 'Instance panel')
cy.get('table').should('contain', 'Events in ClickHouse')
})
})