mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-28 00:46:45 +01:00
13 lines
392 B
TypeScript
13 lines
392 B
TypeScript
describe('Persons', () => {
|
|
beforeEach(() => {
|
|
cy.clickNavMenu('personsmanagement')
|
|
})
|
|
|
|
it('All tabs work', () => {
|
|
cy.get('h1').should('contain', 'People')
|
|
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)
|
|
})
|
|
})
|