mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
dbd62a4992
This PR introduces the possibility of inviting new users with an `admin` role and changing the role of already invited users. Also using scoped permission checks where applicable instead of using user role checks. --------- Co-authored-by: Val <68596159+valya@users.noreply.github.com> Co-authored-by: Alex Grozav <alex@grozav.com> Co-authored-by: Iván Ovejero <ivov.src@gmail.com>
24 lines
624 B
TypeScript
24 lines
624 B
TypeScript
import { INSTANCE_ADMIN, INSTANCE_OWNER } from '../constants';
|
|
import { SettingsPage } from '../pages/settings';
|
|
|
|
const settingsPage = new SettingsPage();
|
|
|
|
describe('Admin user', { disableAutoLogin: true }, () => {
|
|
it('should see same Settings sub menu items as instance owner', () => {
|
|
cy.signin(INSTANCE_OWNER);
|
|
cy.visit(settingsPage.url);
|
|
|
|
let ownerMenuItems = 0;
|
|
|
|
settingsPage.getters.menuItems().then(($el) => {
|
|
ownerMenuItems = $el.length;
|
|
});
|
|
|
|
cy.signout();
|
|
cy.signin(INSTANCE_ADMIN);
|
|
cy.visit(settingsPage.url);
|
|
|
|
settingsPage.getters.menuItems().should('have.length', ownerMenuItems);
|
|
});
|
|
});
|