0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-29 11:12:33 +01:00
posthog/cypress/integration/retention.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

34 lines
1.4 KiB
JavaScript

import { urls } from 'scenes/urls'
describe('Retention', () => {
beforeEach(() => {
cy.visit(urls.insightNew())
cy.get('[data-attr=insight-retention-tab]').click()
})
it('should apply filter and navigate to persons', () => {
// NOTE: First wait for results to load, try and make the test more
// stable. This is to try and avoid an issue where after selecting a
// filter property, the results section would be blank
cy.get('[data-attr=retention-table').should('exist')
cy.get('[data-attr=new-prop-filter-insight-retention]').click()
cy.get('[data-attr=taxonomic-filter-searchfield]').click()
cy.get('[data-attr=taxonomic-filter-searchfield]').type('is_demo')
cy.get('[data-attr=taxonomic-tab-person_properties]').click()
cy.get('[data-attr=prop-filter-person_properties-0]').click()
cy.get('[data-attr=prop-val]').click()
cy.get('[data-attr=prop-val-0]').click()
cy.get('[data-attr=retention-table').should('exist')
// cy.get('.percentage-cell').last().click()
// cy.get('[data-attr=retention-person-link]').its('length').should('eq', 1)
// cy.get('[data-attr=retention-person-link]').contains('smith.nunez@gmail.com')
// cy.get('[data-attr=retention-person-link]').click()
// cy.url().should('include', '/person/')
// cy.contains('smith.nunez@gmail.com').should('exist')
})
})