[arvados-workbench2] updated: 2.5.0-56-gc3bc3420

git repository hosting git at public.arvados.org
Mon Feb 27 21:33:30 UTC 2023


Summary of changes:
 cypress/integration/process.spec.js         | 2 +-
 src/views/process-panel/process-io-card.tsx | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

       via  c3bc34209f7dbbc80c62d8896af043c88cb6b9cf (commit)
      from  0bad690b76b7852ae5e1f70cb9b1dea71daa7917 (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 c3bc34209f7dbbc80c62d8896af043c88cb6b9cf
Author: Peter Amstutz <peter.amstutz at curii.com>
Date:   Mon Feb 27 16:33:16 2023 -0500

    19482: Fix tests
    
    Arvados-DCO-1.1-Signed-off-by: Peter Amstutz <peter.amstutz at curii.com>

diff --git a/cypress/integration/process.spec.js b/cypress/integration/process.spec.js
index 02657b39..f6fbffdc 100644
--- a/cypress/integration/process.spec.js
+++ b/cypress/integration/process.spec.js
@@ -1040,7 +1040,7 @@ describe('Process tests', function() {
             cy.get('[data-cy=process-io-card] h6').contains('Outputs')
                 .parents('[data-cy=process-io-card]').within((ctx) => {
                     cy.get(ctx).scrollIntoView();
-                    cy.get('[data-cy="io-preview-image-toggle"]').click();
+                    cy.get('[data-cy="io-preview-image-toggle"]').click({waitForAnimations: false});
                     const outPdh = testOutputCollection.portable_data_hash;
 
                     verifyIOParameter('output_file', null, "Label Description", 'cat.png', `${outPdh}`);
diff --git a/src/views/process-panel/process-io-card.tsx b/src/views/process-panel/process-io-card.tsx
index 7a2f8094..baa51496 100644
--- a/src/views/process-panel/process-io-card.tsx
+++ b/src/views/process-panel/process-io-card.tsx
@@ -255,7 +255,7 @@ export const ProcessIOCard = withStyles(styles)(connect(null, mapDispatchToProps
         const [showImagePreview, setShowImagePreview] = useState(false);
 
         const PanelIcon = label === ProcessIOCardType.INPUT ? InputIcon : OutputIcon;
-        const mainProcess = process && process!.containerRequest.requestingContainerUuid;
+        const mainProcess = !(process && process!.containerRequest.requestingContainerUuid);
 
         const loading = raw === null || raw === undefined || params === null;
         const hasRaw = !!(raw && Object.keys(raw).length > 0);

-----------------------------------------------------------------------


hooks/post-receive
-- 




More information about the arvados-commits mailing list