Skip to content

Commit

Permalink
test(cypress): Disable FileListInfo test on Nextcloud28 for now
Browse files Browse the repository at this point in the history
Signed-off-by: Jonas <jonas@freesources.org>
  • Loading branch information
mejo- committed Sep 11, 2023
1 parent 80b8317 commit 1042e7e
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions cypress/e2e/collective.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,11 @@ describe('Collective', function() {
cy.get(breadcrumbsSelector).should('contain', 'Preexisting Collective')
cy.get(fileListSelector).should('contain', 'Readme')
cy.get(fileListSelector).should('contain', '.md')
cy.get('.filelist-collectives-wrapper')
.should('contain', 'The content of this folder is best viewed in the Collectives app.')
// 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.')
}
})
})

Expand Down

0 comments on commit 1042e7e

Please sign in to comment.