From f722bb53e0f5a98fd876b957628df22d12259e45 Mon Sep 17 00:00:00 2001 From: Max Date: Thu, 21 Sep 2023 14:49:22 +0200 Subject: [PATCH] Revert "test(cypress): Disable FileListInfo test on Nextcloud28 for now" This reverts commit 1042e7e31e42c06ede19427925a761a5386be2f5. Signed-off-by: Max --- cypress/e2e/collective.spec.js | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/cypress/e2e/collective.spec.js b/cypress/e2e/collective.spec.js index b7aad0d23..c877a9070 100644 --- a/cypress/e2e/collective.spec.js +++ b/cypress/e2e/collective.spec.js @@ -56,11 +56,8 @@ describe('Collective', function() { cy.get(breadcrumbsSelector).should('contain', 'Preexisting Collective') cy.get(fileListSelector).should('contain', 'Readme') cy.get(fileListSelector).should('contain', '.md') - // TODO: Fix FileListInfo for Nextcloud 28+ (Github issue #860) - if (['stable25', 'stable26', 'stable27'].includes(Cypress.env('ncVersion'))) { - cy.get('.filelist-collectives-wrapper') - .should('contain', 'The content of this folder is best viewed in the Collectives app.') - } + cy.get('.filelist-collectives-wrapper') + .should('contain', 'The content of this folder is best viewed in the Collectives app.') }) })