Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/photos.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLouis Chemineau <louis@chmn.me>2022-09-20 15:35:37 +0300
committerLouis Chemineau <louis@chmn.me>2022-09-20 15:41:35 +0300
commitbd038c88a3e09369e0dc27f3d3b826069116270a (patch)
tree689fe7741a9f9a5cabddce15d033b1ffff2e11e3 /cypress
parent0299bbd4cb178dc7185621c8decc43324862d268 (diff)
Disable downloading files from albums as it it not supported yet
Signed-off-by: Louis Chemineau <louis@chmn.me>
Diffstat (limited to 'cypress')
-rw-r--r--cypress/e2e/shared_albums.cy.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/cypress/e2e/shared_albums.cy.js b/cypress/e2e/shared_albums.cy.js
index 283974ba..423bc636 100644
--- a/cypress/e2e/shared_albums.cy.js
+++ b/cypress/e2e/shared_albums.cy.js
@@ -99,21 +99,21 @@ describe('Manage shared albums', () => {
cy.logout()
})
- it('Download a file from a shared album', () => {
+ xit('Download a file from a shared album', () => {
cy.goToSharedAlbum('shared_album_test2')
cy.selectMedia([0])
cy.downloadSelection()
cy.unselectMedia([0])
})
- it('Download multiple files from a shared album', () => {
+ xit('Download multiple files from a shared album', () => {
cy.goToSharedAlbum('shared_album_test2')
cy.selectMedia([1, 2])
cy.downloadSelection()
cy.unselectMedia([1, 2])
})
- it('Download all files from a shared album', () => {
+ xit('Download all files from a shared album', () => {
cy.goToSharedAlbum('shared_album_test2')
cy.downloadAllFiles()
})