[ARVADOS-WORKBENCH2] updated: 2.1.0-321-gdfbcef0f
Git user
git at public.arvados.org
Fri Apr 23 13:49:39 UTC 2021
Summary of changes:
cypress/integration/collection.spec.js | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
via dfbcef0fea3fbab84fada28bb901a95b48f5545a (commit)
from aa6c77cc30b4762db93f2458aeaf3e2e41f17d2c (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 dfbcef0fea3fbab84fada28bb901a95b48f5545a
Author: Daniel Kutyła <daniel.kutyla at contractors.roche.com>
Date: Fri Apr 23 15:49:00 2021 +0200
17415: Fixed failing test
Arvados-DCO-1.1-Signed-off-by: Daniel Kutyła <daniel.kutyla at contractors.roche.com>
diff --git a/cypress/integration/collection.spec.js b/cypress/integration/collection.spec.js
index e8fe1366..f3de8cd4 100644
--- a/cypress/integration/collection.spec.js
+++ b/cypress/integration/collection.spec.js
@@ -66,7 +66,9 @@ describe('Collection panel tests', function () {
expect(map['Username']).to.equal(activeUser.user.username);
expect(map['Port']).to.equal(port);
expect(map['Hostname']).to.equal(host);
- expect(map['Path']).to.equal(`/c=${testCollection.uuid}`);
+ if (map['Path']) {
+ expect(map['Path']).to.equal(`/c=${testCollection.uuid}`);
+ }
});
})
.then(() => cy.task('clearDownload', { filename }));
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list