[arvados-workbench2] updated: 2.4.0-326-gf80764fc
git repository hosting
git at public.arvados.org
Fri Oct 28 16:44:55 UTC 2022
Summary of changes:
cypress/integration/process.spec.js | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
via f80764fcac14f8915e9d20d57d50f6d53261b8a1 (commit)
from ba638379056591dd0c40a192a8582df8d395b138 (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 f80764fcac14f8915e9d20d57d50f6d53261b8a1
Author: Stephen Smith <stephen at curii.com>
Date: Fri Oct 28 12:44:41 2022 -0400
19315: Increase timeouts for log cypress tests
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 07122432..7ba3b329 100644
--- a/cypress/integration/process.spec.js
+++ b/cypress/integration/process.spec.js
@@ -107,7 +107,7 @@ describe('Process tests', function() {
event_type: 'stdout'
}).then(function(log) {
cy.get('[data-cy=process-logs]')
- .should('not.contain', 'No logs yet')
+ .should('not.contain', 'No logs yet', {timeout: 7000})
.and('contain', 'hello world');
})
});
@@ -300,14 +300,14 @@ describe('Process tests', function() {
cy.getAll('@containerRequest').then(function([containerRequest]) {
cy.goToPath(`/processes/${containerRequest.uuid}`);
- cy.get('[data-cy=process-runtime-status-retry-warning]')
+ cy.get('[data-cy=process-runtime-status-retry-warning]', {timeout: 7000})
.should('contain', 'Process retried 1 time');
});
cy.getAll('@containerRequest').then(function([containerRequest]) {
containerCount = 3;
cy.goToPath(`/processes/${containerRequest.uuid}`);
- cy.get('[data-cy=process-runtime-status-retry-warning]')
+ cy.get('[data-cy=process-runtime-status-retry-warning]', {timeout: 7000})
.should('contain', 'Process retried 2 times');
});
});
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list