X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/388cb2c2dce08514fd872ccfc0c5de88a00725b5..7b5bf320c400a44d3e8b0cd962256c0ab9d872bf:/cypress/integration/group-manage.spec.js diff --git a/cypress/integration/group-manage.spec.js b/cypress/integration/group-manage.spec.js index b6fba4f1f1..ffe2c8c4df 100644 --- a/cypress/integration/group-manage.spec.js +++ b/cypress/integration/group-manage.spec.js @@ -254,7 +254,7 @@ describe('Group manage tests', function() { .should('not.contain', groupName + ' (renamed)'); }); - it.only('disables group-related controls for built-in groups', function() { + it('disables group-related controls for built-in groups', function() { cy.loginAs(adminUser); ['All users', 'Anonymous users', 'System group'].forEach((builtInGroup) => { @@ -262,20 +262,20 @@ describe('Group manage tests', function() { cy.get('[data-cy=groups-panel-data-explorer]').contains(builtInGroup).click(); // Check group member actions - // cy.get('[data-cy=group-members-data-explorer]') - // .within(() => { + cy.get('[data-cy=group-members-data-explorer]') + .within(() => { cy.get('[data-cy=group-member-add]').should('not.exist'); cy.get('[data-cy=user-visible-checkbox] input').should('be.disabled'); cy.get('[data-cy=resource-delete-button]').should('be.disabled'); - // cy.get('[data-cy=edit-permission-button]').should('not.exist'); + cy.get('[data-cy=edit-permission-button]').should('not.exist'); }); // Check permissions actions cy.get('[data-cy=group-details-permissions-tab]').click(); - // cy.get('[data-cy=group-permissions-data-explorer]').within(() => { + cy.get('[data-cy=group-permissions-data-explorer]').within(() => { cy.get('[data-cy=resource-delete-button]').should('be.disabled'); cy.get('[data-cy=edit-permission-button]').should('not.exist'); - // }); + }); }); });