[arvados-workbench2] updated: 2.4.0-327-gf15f6c31
git repository hosting
git at public.arvados.org
Fri Oct 28 17:14:17 UTC 2022
Summary of changes:
cypress/integration/process.spec.js | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
via f15f6c31dc4eb0c606e448fdee1391bfb877c007 (commit)
from f80764fcac14f8915e9d20d57d50f6d53261b8a1 (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 f15f6c31dc4eb0c606e448fdee1391bfb877c007
Author: Stephen Smith <stephen at curii.com>
Date: Fri Oct 28 13:13:51 2022 -0400
19315: Correctly specify cypress timeout and imcrease timeout to process log test
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 7ba3b329..c8a510bf 100644
--- a/cypress/integration/process.spec.js
+++ b/cypress/integration/process.spec.js
@@ -106,8 +106,8 @@ describe('Process tests', function() {
},
event_type: 'stdout'
}).then(function(log) {
- cy.get('[data-cy=process-logs]')
- .should('not.contain', 'No logs yet', {timeout: 7000})
+ cy.get('[data-cy=process-logs]', {timeout: 7000})
+ .should('not.contain', 'No logs yet')
.and('contain', 'hello world');
})
});
@@ -206,7 +206,7 @@ describe('Process tests', function() {
cy.loginAs(activeUser);
cy.goToPath(`/processes/${containerRequest.uuid}`);
// Should show main logs by default
- cy.get('[data-cy=process-logs-filter]').should('contain', 'Main logs');
+ cy.get('[data-cy=process-logs-filter]', {timeout: 7000}).should('contain', 'Main logs');
cy.get('[data-cy=process-logs]')
.should('contain', stdoutLogs[Math.floor(Math.random() * stdoutLogs.length)])
.and('not.contain', nodeInfoLogs[Math.floor(Math.random() * nodeInfoLogs.length)])
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list