mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-22 08:40:03 +01:00
e10ea61d63
* Use normal filters for person * Clean up is_identified * fix jest stuff * fix tests and nits * types etc * e2e test
13 lines
383 B
JavaScript
13 lines
383 B
JavaScript
describe('Persons', () => {
|
|
beforeEach(() => {
|
|
cy.clickNavMenu('persons')
|
|
})
|
|
|
|
it('All tabs work', () => {
|
|
cy.get('h1').should('contain', 'Persons')
|
|
cy.get('[data-attr=persons-search]').type('marisol').type('{enter}').should('have.value', 'marisol')
|
|
cy.wait(200)
|
|
cy.get('[data-row-key]').its('length').should('be.gte', 0)
|
|
})
|
|
})
|