Skip to content

Commit

Permalink
Disable file download in tests
Browse files Browse the repository at this point in the history
Signed-off-by: Louis Chemineau <louis@chmn.me>
  • Loading branch information
artonge committed Sep 26, 2023
1 parent 3b3e6dc commit 9b462f7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cypress/e2e/shared_albums.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ describe('Manage shared albums', () => {
})
})

context('Download files from a shared album', () => {
xcontext('Download files from a shared album', () => {
before(() => {
cy.login(alice)
cy.visit('apps/photos/albums')
Expand All @@ -105,21 +105,21 @@ describe('Manage shared albums', () => {
addFilesToAlbumFromAlbum('shared_album_test2', [0, 1, 2])
})

xit('Download a file from a shared album', () => {
it('Download a file from a shared album', () => {
goToSharedAlbum('shared_album_test2')
selectMedia([0])
downloadSelection()
selectMedia([0])
})

xit('Download multiple files from a shared album', () => {
it('Download multiple files from a shared album', () => {
goToSharedAlbum('shared_album_test2')
selectMedia([1, 2])
downloadSelection()
selectMedia([1, 2])
})

xit('Download all files from a shared album', () => {
it('Download all files from a shared album', () => {
goToSharedAlbum('shared_album_test2')
downloadAllFiles()
})
Expand Down

0 comments on commit 9b462f7

Please sign in to comment.