From b0e34765f018db004425e274c0ce9e58b7a184b5 Mon Sep 17 00:00:00 2001 From: Stephen Smith Date: Tue, 15 Aug 2023 13:43:46 -0400 Subject: [PATCH] 20219: Increase cypress timeouts when appending logs Waiting on an intercept doesn't work because on fast systems the wait is too late Arvados-DCO-1.1-Signed-off-by: Stephen Smith --- cypress/integration/process.spec.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cypress/integration/process.spec.js b/cypress/integration/process.spec.js index 62d5d9ea..8626924c 100644 --- a/cypress/integration/process.spec.js +++ b/cypress/integration/process.spec.js @@ -442,7 +442,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: 7000}) + cy.get('[data-cy=process-logs]', {timeout: 10000}) .should('not.contain', 'No logs yet') .and('contain', 'hello world'); }); @@ -451,7 +451,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: 7000}) + cy.get('[data-cy=process-logs]', {timeout: 10000}) .should('not.contain', 'No logs yet') .and('contain', 'hello new line'); }); -- 2.39.5