From c8a07de05867fe2e959eb0063a674a4f026f5b76 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Daniel=20Kuty=C5=82a?= Date: Mon, 28 Mar 2022 16:27:46 +0200 Subject: [PATCH] 18834: Re-enabled check MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Arvados-DCO-1.1-Signed-off-by: Daniel Kutyła --- cypress/integration/collection.spec.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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'); }); -- 2.30.2