mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-24 00:47:50 +01:00
3b2ceee89e
* Fix organization settings * add test * fix
9 lines
373 B
JavaScript
9 lines
373 B
JavaScript
describe('Organization settings', () => {
|
|
it('can navigate to organization settings', () => {
|
|
cy.get('[data-attr=top-navigation-whoami]').click()
|
|
cy.get('[data-attr=top-menu-item-org-settings]').click()
|
|
cy.location('pathname').should('include', '/organization/settings')
|
|
cy.get('.page-title').should('contain', 'Organization')
|
|
})
|
|
})
|