mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-22 08:40:03 +01:00
4cb64d0c74
* added timeouts and waits to ensure flow of cypress tests * removed unused test * fixed trends elements tests * testing a longer wait time - temp * fix trends sessions and retetion filtering tests * fix events filtering test * removed wait * trends sessions fix * minor update * fix live actions & sessions * improve timeouts * more timouts * removed some waits * added timeouts to trends tests * modify config * remove test on bug * removed timeout from events table * remove dashboards timeout * change selector for sessions tab * use data-attr
11 lines
203 B
JavaScript
11 lines
203 B
JavaScript
describe('Toolbar', () => {
|
|
beforeEach(() => {
|
|
cy.visit('/demo')
|
|
cy.wait(200)
|
|
})
|
|
|
|
it('Toolbar loads', () => {
|
|
cy.get('#__POSTHOG_TOOLBAR__').should('exist')
|
|
})
|
|
})
|