0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-24 18:07:17 +01:00
posthog/cypress/e2e/organizationSettings.cy.ts
2022-12-30 21:27:26 +01:00

10 lines
449 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=top-menu-toggle]').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')
})
})