mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-30 19:41:46 +01:00
f74874b972
* Closes #737 filter by person properties * Remove unused selectStyle * Only get what we need * show value * Hide event properties if filtering by person * Speed up event filtering * Fix type error * Remove unused properties_to_Q function * Fix test * Closes #772 filter is true/false and is set * Closes #737 filter by person properties * Remove unused selectStyle * Only get what we need * show value * Hide event properties if filtering by person * Speed up event filtering * Fix type error * Remove unused properties_to_Q function * Fix test * Fix endpoint laoding * Fix objects filtering * Fix changing operator * Fix setting correct value when selecting is_set * Filter out empty properties * Fix cohort people properties * Fix funnel * Fix cypress test * update cypress tests * . * . Co-authored-by: Eric <eeoneric@gmail.com>
11 lines
303 B
JavaScript
11 lines
303 B
JavaScript
describe('Dashboards', () => {
|
|
beforeEach(() => {
|
|
cy.get('[data-attr=menu-item-dashboards]').click()
|
|
cy.location('pathname', { timeout: 6000 }).should('include', '/dashboard')
|
|
})
|
|
|
|
it('Dashboards loaded', () => {
|
|
cy.get('h1').should('contain', 'Dashboards')
|
|
})
|
|
})
|