2021-05-01 03:21:23 +02:00
|
|
|
// For tests related to team members administration please see `inviteMembers.js`
|
2021-02-04 12:26:38 +01:00
|
|
|
describe('Organization settings', () => {
|
|
|
|
it('can navigate to organization settings', () => {
|
2021-11-11 21:20:01 +01:00
|
|
|
cy.get('[data-attr=top-menu-toggle]').click()
|
2021-02-04 12:26:38 +01:00
|
|
|
cy.get('[data-attr=top-menu-item-org-settings]').click()
|
2021-03-10 13:09:35 +01:00
|
|
|
cy.location('pathname').should('include', '/organization/settings')
|
2021-03-14 17:12:56 +01:00
|
|
|
cy.get('.page-title').should('contain', 'Organization')
|
2021-02-04 12:26:38 +01:00
|
|
|
})
|
|
|
|
})
|