mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-24 18:07:17 +01:00
5cb8e9c409
* fix overlay so that components aren't rendering over one another and use hooks * fix linting err * change cypress test
20 lines
615 B
JavaScript
20 lines
615 B
JavaScript
describe('Live Actions', () => {
|
|
beforeEach(() => {
|
|
cy.get('[data-attr=menu-item-events]').click()
|
|
cy.get('[data-attr=menu-item-live-actions]').click()
|
|
})
|
|
|
|
it('Live actions loaded', () => {
|
|
cy.get('[data-attr=events-table').should('exist')
|
|
})
|
|
|
|
it('Apply 1 overall filter', () => {
|
|
cy.get('[data-attr=new-prop-filter-EventsTable]').click()
|
|
cy.get('[data-attr=prop-filter-person-0]').click()
|
|
cy.get('[data-attr=prop-val]').click()
|
|
cy.get('[data-attr=prop-val-0]').click()
|
|
|
|
cy.get('[data-attr=events-table').should('exist')
|
|
})
|
|
})
|