mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-28 09:16:49 +01:00
9 lines
382 B
TypeScript
9 lines
382 B
TypeScript
// For tests related to team members administration please see `inviteMembers.js`
|
|
describe('Organization settings', () => {
|
|
it('can navigate to organization settings', () => {
|
|
cy.get('[data-attr=menu-item-me]').click()
|
|
cy.get('[data-attr=top-menu-item-org-settings]').click()
|
|
cy.location('pathname').should('include', '/settings/organization')
|
|
})
|
|
})
|