[arvados] updated: 2.7.0-5995-g64ca396eef
git repository hosting
git at public.arvados.org
Fri Feb 9 20:58:32 UTC 2024
Summary of changes:
services/workbench2/cypress/integration/process.spec.js | 12 ++++++------
services/workbench2/cypress/integration/workflow.spec.js | 4 ++--
2 files changed, 8 insertions(+), 8 deletions(-)
via 64ca396eef119278018dceb8ca3b6c51f7debb26 (commit)
from 651e6f0c4eb492a48df0e56783a970c9391237d4 (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 64ca396eef119278018dceb8ca3b6c51f7debb26
Author: Peter Amstutz <peter.amstutz at curii.com>
Date: Thu Feb 8 14:54:52 2024 -0500
21158: Fix tests
Arvados-DCO-1.1-Signed-off-by: Peter Amstutz <peter.amstutz at curii.com>
diff --git a/services/workbench2/cypress/integration/process.spec.js b/services/workbench2/cypress/integration/process.spec.js
index 133cabf1f9..f647560a5f 100644
--- a/services/workbench2/cypress/integration/process.spec.js
+++ b/services/workbench2/cypress/integration/process.spec.js
@@ -106,7 +106,7 @@ describe("Process tests", function () {
'Share',
'View details',
];
-
+
createContainerRequest(
activeUser,
`test_container_request ${Math.floor(Math.random() * 999999)}`,
@@ -133,7 +133,7 @@ describe("Process tests", function () {
});
})
})
-
+
describe("Details panel", function () {
it("shows process details", function () {
createContainerRequest(
@@ -1364,7 +1364,7 @@ describe("Process tests", function () {
cy.getAll("@containerRequest", "@testOutputCollection").then(function ([containerRequest, testOutputCollection]) {
cy.goToPath(`/processes/${containerRequest.uuid}`);
cy.get("[data-cy=process-io-card] h6")
- .contains("Inputs")
+ .contains("Input Parameters")
.parents("[data-cy=process-io-card]")
.within(() => {
verifyIOParameter("input_file", null, "Label Description", "input1.tar", "00000000000000000000000000000000+01");
@@ -1399,7 +1399,7 @@ describe("Process tests", function () {
verifyIOParameter("input_file_url", null, null, "http://example.com/index.html");
});
cy.get("[data-cy=process-io-card] h6")
- .contains("Outputs")
+ .contains("Output Parameters")
.parents("[data-cy=process-io-card]")
.within(ctx => {
cy.get(ctx).scrollIntoView();
@@ -1499,7 +1499,7 @@ describe("Process tests", function () {
cy.waitForDom();
cy.get("[data-cy=process-io-card] h6")
- .contains("Inputs")
+ .contains("Input Parameters")
.parents("[data-cy=process-io-card]")
.within(() => {
cy.wait(2000);
@@ -1509,7 +1509,7 @@ describe("Process tests", function () {
});
});
cy.get("[data-cy=process-io-card] h6")
- .contains("Outputs")
+ .contains("Output Parameters")
.parents("[data-cy=process-io-card]")
.within(() => {
cy.get("tbody tr").each(item => {
diff --git a/services/workbench2/cypress/integration/workflow.spec.js b/services/workbench2/cypress/integration/workflow.spec.js
index 844e87d8de..c6c49ee343 100644
--- a/services/workbench2/cypress/integration/workflow.spec.js
+++ b/services/workbench2/cypress/integration/workflow.spec.js
@@ -217,13 +217,13 @@ describe('Registered workflow panel tests', function() {
cy.get('[data-cy=registered-workflow-info-panel')
.should('contain', 'gitCommit: 9b091ed7e0bef98b3312e9478c52b89ba25792de')
- cy.get('[data-cy=process-io-card] h6').contains('Inputs')
+ cy.get('[data-cy=process-io-card] h6').contains('Input Parameters')
.parents('[data-cy=process-io-card]').within(() => {
verifyIOParameter('file1', null, '', '', '');
verifyIOParameter('numbering', null, '', '', '');
verifyIOParameter('args.py', null, '', 'args.py', 'de738550734533c5027997c87dc5488e+53');
});
- cy.get('[data-cy=process-io-card] h6').contains('Outputs')
+ cy.get('[data-cy=process-io-card] h6').contains('Output Parameters')
.parents('[data-cy=process-io-card]').within(() => {
verifyIOParameter('args', null, '', '', '');
});
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list