[ARVADOS-WORKBENCH2] updated: 2.3.0-208-gc8a07de0
Git user
git at public.arvados.org
Mon Mar 28 14:28:21 UTC 2022
Summary of changes:
cypress/integration/collection.spec.js | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
via c8a07de05867fe2e959eb0063a674a4f026f5b76 (commit)
from 44d370d6e0e9e91dbc579e7d990667d52ad67b17 (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 c8a07de05867fe2e959eb0063a674a4f026f5b76
Author: Daniel Kutyła <daniel.kutyla at contractors.roche.com>
Date: Mon Mar 28 16:27:46 2022 +0200
18834: Re-enabled check
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 6537e162..2ce6bcd5 100644
--- a/cypress/integration/collection.spec.js
+++ b/cypress/integration/collection.spec.js
@@ -951,7 +951,7 @@ describe('Collection panel tests', function () {
}).as('testCollection1');
});
- it.only('uploads a file and checks the collection UI to be fresh', () => {
+ it('uploads a file and checks the collection UI to be fresh', () => {
cy.getAll('@testCollection1')
.then(function([testCollection1]) {
cy.loginAs(activeUser);
@@ -963,7 +963,7 @@ describe('Collection panel tests', function () {
cy.fixture('files/5mb.bin', 'base64').then(content => {
cy.get('[data-cy=drag-and-drop]').upload(content, '5mb_a.bin');
cy.get('[data-cy=form-submit-btn]').click();
- // cy.get('[data-cy=form-submit-btn]').should('not.exist');
+ cy.get('[data-cy=form-submit-btn]').should('not.exist');
cy.get('[data-cy=collection-files-panel]')
.contains('5mb_a.bin').should('exist');
cy.get('[data-cy=collection-file-count]').should('contain', '3');
@@ -973,7 +973,7 @@ describe('Collection panel tests', function () {
cy.fixture('files/5mb.bin', 'base64').then(content => {
cy.get('[data-cy=drag-and-drop]').upload(content, '5mb_b.bin');
cy.get('[data-cy=form-submit-btn]').click();
- // cy.get('[data-cy=form-submit-btn]').should('not.exist');
+ cy.get('[data-cy=form-submit-btn]').should('not.exist');
cy.get('[data-cy=collection-files-panel]')
.contains('5mb_b.bin').should('exist');
});
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list