0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-22 08:40:03 +01:00
posthog/cypress/integration/organizationSettings.js
Michael Matloka b32a77fb56
Release lemonade for self-hosted users (#7059)
Co-authored-by: Paolo D'Amico <paolodamico@users.noreply.github.com>
2021-11-11 12:20:01 -08:00

10 lines
449 B
JavaScript

// 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')
})
})