0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-29 03:04:16 +01:00
posthog/cypress/e2e/organizationSettings.cy.ts

9 lines
382 B
TypeScript
Raw Normal View History

// 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()
2023-11-09 10:08:33 +01:00
cy.location('pathname').should('include', '/settings/organization')
})
})