[arvados] updated: 2.7.0-6304-g4bdf476ee4
git repository hosting
git at public.arvados.org
Wed May 15 18:15:17 UTC 2024
Summary of changes:
services/workbench2/cypress/e2e/workflow.cy.js | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
via 4bdf476ee4c09d8d2487aa5f40e54f7873ae5bf5 (commit)
from a7dc7c850d73938e07dd14bede3fb3700b86f77d (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
commit 4bdf476ee4c09d8d2487aa5f40e54f7873ae5bf5
Author: Lisa Knox <lisaknox83 at gmail.com>
Date: Wed May 15 14:15:11 2024 -0400
21535: added test for individual wf not existinf in dom Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox at curii.com>
diff --git a/services/workbench2/cypress/e2e/workflow.cy.js b/services/workbench2/cypress/e2e/workflow.cy.js
index 3c9b8269c3..57f3f6a4ec 100644
--- a/services/workbench2/cypress/e2e/workflow.cy.js
+++ b/services/workbench2/cypress/e2e/workflow.cy.js
@@ -265,7 +265,10 @@ describe('Registered workflow panel tests', function() {
cy.get('body').contains('Delete Workflow', {timeout: 10000}).should('exist')
cy.get('[data-cy=multiselect-button]').eq(0).click();
cy.get('[data-cy=confirmation-dialog-ok-btn]').should('exist').click();
- cy.get('[data-cy=data-table-row]').should('not.exist');
+
+ wfNames.forEach((wfName) => {
+ cy.get('[data-cy=data-table-row]').contains(wfName).should('not.exist');
+ });
});
it('cannot delete readonly workflow', function() {
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list