From 4a917782a054773c2cb72f3ee364e2c0b02643e9 Mon Sep 17 00:00:00 2001 From: Stephen Smith Date: Wed, 1 Dec 2021 14:32:13 -0500 Subject: [PATCH] 18123: Test shared resource permission level in group permissions list. Arvados-DCO-1.1-Signed-off-by: Stephen Smith --- cypress/integration/group-manage.spec.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/cypress/integration/group-manage.spec.js b/cypress/integration/group-manage.spec.js index 14abcd2d..c187320c 100644 --- a/cypress/integration/group-manage.spec.js +++ b/cypress/integration/group-manage.spec.js @@ -170,7 +170,11 @@ describe('Group manage tests', function() { cy.get('[data-cy=groups-panel-data-explorer]').contains(groupName).click(); cy.get('[data-cy=group-details-permissions-tab]').click(); cy.get('[data-cy=group-permissions-data-explorer]') - .contains('test-project'); + .contains('test-project') + .parents('tr') + .within(() => { + cy.contains('Read'); + }); }); it('removes users from the group', function() { -- 2.30.2