mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-28 18:26:15 +01:00
25e56f38b0
* 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>
13 lines
444 B
TypeScript
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')
|
|
})
|
|
})
|