18834: Re-enabled check
authorDaniel Kutyła <daniel.kutyla@contractors.roche.com>
Mon, 28 Mar 2022 14:27:46 +0000 (16:27 +0200)
committerDaniel Kutyła <daniel.kutyla@contractors.roche.com>
Mon, 28 Mar 2022 14:27:46 +0000 (16:27 +0200)
Arvados-DCO-1.1-Signed-off-by: Daniel Kutyła <daniel.kutyla@contractors.roche.com>

cypress/integration/collection.spec.js

index 6537e1626905e916360b45eff5424a1f557879c7..2ce6bcd55db312b3da5d98d8f39b7fb5233c326d 100644 (file)
@@ -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');
                         });