0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-22 08:40:03 +01:00
posthog/cypress/integration/systemStatus.js
Tim Glaser 2adc6258d2
Run e2e with clickhouse (#7705)
* Run e2e with clickhouse

* Set kafka to /etc/hosts, and speed up waiting

* fix persons page

* Migrate clickhouse

* Update e2e-test-runner

* Fixes/improvements

* fingers x'ed

* fix

* revert url

* fix demo data

* fix test

* Run Redis in docker

* fix test

* fix redis

* trap

* fix e2e-test-runner

* try localhost instead of kafka

* Revert "try localhost instead of kafka"

This reverts commit 58869c96df.
2022-01-03 14:26:54 +00:00

13 lines
441 B
JavaScript

import { urls } from 'scenes/urls'
describe('System Status', () => {
it('System Status loaded', () => {
cy.location('pathname').should('eq', urls.savedInsights())
cy.wait(500)
cy.get('[data-attr=top-menu-toggle]').click()
cy.get('[data-attr=system-status-badge]').click()
cy.get('h1').should('contain', 'System Status')
cy.get('table').should('contain', 'Events in ClickHouse')
})
})