[arvados-workbench2] updated: 2.6.3-53-g59cc53cb

git repository hosting git at public.arvados.org
Tue Aug 15 23:30:12 UTC 2023


Summary of changes:
 cypress/integration/process.spec.js | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

       via  59cc53cbed401e6b5ad750d992f64a8f5c83c6bf (commit)
      from  b0e34765f018db004425e274c0ce9e58b7a184b5 (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 59cc53cbed401e6b5ad750d992f64a8f5c83c6bf
Author: Stephen Smith <stephen at curii.com>
Date:   Tue Aug 15 19:29:56 2023 -0400

    20219: Try to fix tests on jenkins
    
    Arvados-DCO-1.1-Signed-off-by: Stephen Smith <stephen at curii.com>

diff --git a/cypress/integration/process.spec.js b/cypress/integration/process.spec.js
index 8626924c..64f27c50 100644
--- a/cypress/integration/process.spec.js
+++ b/cypress/integration/process.spec.js
@@ -431,6 +431,11 @@ describe('Process tests', function() {
                 ['echo', 'hello world'],
                 false, 'Committed')
             .then(function(containerRequest) {
+                // Create empty log file before loading process page
+                cy.appendLog(adminUser.token, containerRequest.uuid, "stdout.txt", [
+                    ""
+                ])
+
                 cy.loginAs(activeUser);
                 cy.goToPath(`/processes/${containerRequest.uuid}`);
                 cy.get('[data-cy=process-details]').should('contain', crName);
@@ -442,7 +447,7 @@ describe('Process tests', function() {
                 cy.appendLog(adminUser.token, containerRequest.uuid, "stdout.txt", [
                     "2023-07-18T20:14:48.128642814Z hello world"
                 ]).then(() => {
-                    cy.get('[data-cy=process-logs]', {timeout: 10000})
+                    cy.get('[data-cy=process-logs]', {timeout: 7000})
                         .should('not.contain', 'No logs yet')
                         .and('contain', 'hello world');
                 });
@@ -451,7 +456,7 @@ describe('Process tests', function() {
                 cy.appendLog(adminUser.token, containerRequest.uuid, "stderr.txt", [
                     "2023-07-18T20:14:49.128642814Z hello new line"
                 ]).then(() => {
-                    cy.get('[data-cy=process-logs]', {timeout: 10000})
+                    cy.get('[data-cy=process-logs]', {timeout: 7000})
                         .should('not.contain', 'No logs yet')
                         .and('contain', 'hello new line');
                 });

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


hooks/post-receive
-- 




More information about the arvados-commits mailing list