mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
44 lines
1.1 KiB
TypeScript
44 lines
1.1 KiB
TypeScript
import { INSTANCE_MEMBERS, INSTANCE_OWNER } from '../constants';
|
|
import { WorkerViewPage } from '../pages';
|
|
|
|
const workerViewPage = new WorkerViewPage();
|
|
|
|
describe('Worker View (unlicensed)', () => {
|
|
beforeEach(() => {
|
|
cy.disableFeature('workerView');
|
|
cy.disableQueueMode();
|
|
});
|
|
|
|
it('should not show up in the menu sidebar', () => {
|
|
cy.signin(INSTANCE_MEMBERS[0]);
|
|
cy.visit(workerViewPage.url);
|
|
workerViewPage.getters.menuItem().should('not.exist');
|
|
});
|
|
|
|
it('should show action box', () => {
|
|
cy.signin(INSTANCE_MEMBERS[0]);
|
|
cy.visit(workerViewPage.url);
|
|
workerViewPage.getters.workerViewUnlicensed().should('exist');
|
|
});
|
|
});
|
|
|
|
describe('Worker View (licensed)', () => {
|
|
beforeEach(() => {
|
|
cy.enableFeature('workerView');
|
|
cy.enableQueueMode();
|
|
});
|
|
|
|
it('should show up in the menu sidebar', () => {
|
|
cy.signin(INSTANCE_OWNER);
|
|
cy.enableQueueMode();
|
|
cy.visit(workerViewPage.url);
|
|
workerViewPage.getters.menuItem().should('exist');
|
|
});
|
|
|
|
it('should show worker list view', () => {
|
|
cy.signin(INSTANCE_MEMBERS[0]);
|
|
cy.visit(workerViewPage.url);
|
|
workerViewPage.getters.workerViewLicensed().should('exist');
|
|
});
|
|
});
|