From: Stephen Smith Date: Tue, 12 Apr 2022 19:24:17 +0000 (-0400) Subject: 16068: Fix process panel test X-Git-Tag: 2.4.1~1^2~8^2~7 X-Git-Url: https://git.arvados.org/arvados-workbench2.git/commitdiff_plain/4e1495220aae8fdcca2dc40d3f6d13dfc83e38b6 16068: Fix process panel test Arvados-DCO-1.1-Signed-off-by: Stephen Smith --- diff --git a/cypress/integration/process.spec.js b/cypress/integration/process.spec.js index 75c318db..f5dfbcd4 100644 --- a/cypress/integration/process.spec.js +++ b/cypress/integration/process.spec.js @@ -95,7 +95,7 @@ describe('Process tests', function() { .then(function(containerRequest) { cy.loginAs(activeUser); cy.goToPath(`/processes/${containerRequest.uuid}`); - cy.get('[data-cy=process-info]').should('contain', crName); + cy.get('[data-cy=process-details]').should('contain', crName); cy.get('[data-cy=process-logs]') .should('contain', 'No logs yet') .and('not.contain', 'hello world'); @@ -191,4 +191,4 @@ describe('Process tests', function() { }); }); }); -}); \ No newline at end of file +});