Skip to content

Commit 07bf625

Browse files
authored
Merge pull request #2363 from nextcloud/renovate/master-major-nextcloud
2 parents 5a099dd + 3fb7701 commit 07bf625

23 files changed

Lines changed: 7387 additions & 11012 deletions

apps/viewer/apps/viewer/apps/viewer/cypress/e2e/a11y.cy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ describe('A11y tests', function() {
3939
})
4040

4141
it('See the title on the viewer header', function() {
42-
cy.get('body > .viewer .modal-name').should('contain', 'image2.jpg')
42+
cy.get('body > .viewer .modal-header__name').should('contain', 'image2.jpg')
4343
})
4444

4545
it('Should have rendered the previous video and the next image', function() {

apps/viewer/apps/viewer/apps/viewer/cypress/e2e/actions/sidebar.cy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ describe('Open the sidebar from the viewer and open viewer with sidebar already
6464
})
6565

6666
it('See the menu icon and title on the viewer header', function() {
67-
cy.get('body > .viewer .modal-name').should('contain', 'image1.jpg')
67+
cy.get('body > .viewer .modal-header__name').should('contain', 'image1.jpg')
6868
cy.get('body > .viewer .modal-header button.action-item__menutoggle').should('be.visible')
6969
cy.get('body > .viewer .modal-header button.header-close').should('be.visible')
7070
})

apps/viewer/apps/viewer/apps/viewer/cypress/e2e/audios/audios.cy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ describe('Open mp3 and ogg audio in viewer', function() {
5454
})
5555

5656
it('See the menu icon and title on the viewer header', function() {
57-
cy.get('body > .viewer .modal-name').should('contain', 'audio.mp3')
57+
cy.get('body > .viewer .modal-header__name').should('contain', 'audio.mp3')
5858
cy.get('body > .viewer .modal-header button.action-item__menutoggle').should('be.visible')
5959
cy.get('body > .viewer .modal-header button.header-close').should('be.visible')
6060
})

apps/viewer/apps/viewer/apps/viewer/cypress/e2e/images/images-custom-list-loadmore.cy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ describe('Open custom list of images in viewer with pagination', function() {
130130
})
131131

132132
it('See the menu icon and title on the viewer header', function() {
133-
cy.get('body > .viewer .modal-name').should('contain', 'image1.jpg')
133+
cy.get('body > .viewer .modal-header__name').should('contain', 'image1.jpg')
134134
cy.get('body > .viewer .modal-header button.action-item__menutoggle').should('be.visible')
135135
cy.get('body > .viewer .modal-header button.header-close').should('be.visible')
136136
})

apps/viewer/apps/viewer/apps/viewer/cypress/e2e/images/images-custom-list.cy.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ describe('Open custom images list in viewer', function() {
9595
})
9696

9797
it('See the menu icon and title on the viewer header', function() {
98-
cy.get('body > .viewer .modal-name').should('contain', 'image1.jpg')
98+
cy.get('body > .viewer .modal-header__name').should('contain', 'image1.jpg')
9999
cy.get('body > .viewer .modal-header button.action-item__menutoggle').should('be.visible')
100100
cy.get('body > .viewer .modal-header button.header-close').should('be.visible')
101101
})
@@ -134,7 +134,7 @@ describe('Open custom images list in viewer', function() {
134134
})
135135

136136
it('See the menu icon and title on the viewer header', function() {
137-
cy.get('body > .viewer .modal-name').should('contain', 'image3.jpg')
137+
cy.get('body > .viewer .modal-header__name').should('contain', 'image3.jpg')
138138
cy.get('body > .viewer .modal-header button.action-item__menutoggle').should('be.visible')
139139
cy.get('body > .viewer .modal-header button.header-close').should('be.visible')
140140
})
@@ -160,7 +160,7 @@ describe('Open custom images list in viewer', function() {
160160
})
161161

162162
it('See the menu icon and title on the viewer header', function() {
163-
cy.get('body > .viewer .modal-name').should('contain', 'image1.jpg')
163+
cy.get('body > .viewer .modal-header__name').should('contain', 'image1.jpg')
164164
cy.get('body > .viewer .modal-header button.action-item__menutoggle').should('be.visible')
165165
cy.get('body > .viewer .modal-header button.header-close').should('be.visible')
166166
})

apps/viewer/apps/viewer/apps/viewer/cypress/e2e/images/images.cy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ describe('Open images in viewer', function() {
6969
})
7070

7171
it('See the menu icon and title on the viewer header', function() {
72-
cy.get('body > .viewer .modal-name').should('contain', 'image1.jpg')
72+
cy.get('body > .viewer .modal-header__name').should('contain', 'image1.jpg')
7373
cy.get('body > .viewer .modal-header button.action-item__menutoggle').should('be.visible')
7474
cy.get('body > .viewer .modal-header button.header-close').should('be.visible')
7575
})

apps/viewer/apps/viewer/apps/viewer/cypress/e2e/mixins/audio.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ export default function(fileName = 'audio.ogg', mimeType = 'audio/ogg') {
6868
})
6969

7070
it('See the menu icon and title on the viewer header', function() {
71-
cy.get('body > .viewer .modal-name').should('contain', fileName)
71+
cy.get('body > .viewer .modal-header__name').should('contain', fileName)
7272
cy.get('body > .viewer .modal-header button.action-item__menutoggle').should('be.visible')
7373
cy.get('body > .viewer .modal-header button.header-close').should('be.visible')
7474
})

apps/viewer/apps/viewer/apps/viewer/cypress/e2e/mixins/image.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ export default function(fileName = 'image1.jpg', mimeType = 'image/jpeg', source
7070
})
7171

7272
it('See the menu icon and title on the viewer header', function() {
73-
cy.get('body > .viewer .modal-name').should('contain', fileName)
73+
cy.get('body > .viewer .modal-header__name').should('contain', fileName)
7474
cy.get('body > .viewer .modal-header button.action-item__menutoggle').should('be.visible')
7575
cy.get('body > .viewer .modal-header button.header-close').should('be.visible')
7676
})

apps/viewer/apps/viewer/apps/viewer/cypress/e2e/mixins/oddname.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ export default function(file, type, sidebar = false) {
9797
*/
9898
function menuOk() {
9999
cy.get('body > .viewer .icon-error').should('not.exist')
100-
cy.get('body > .viewer .modal-name').should('contain', placedName)
100+
cy.get('body > .viewer .modal-header__name').should('contain', placedName)
101101
cy.get('body > .viewer .modal-header button.header-close').should(
102102
'be.visible',
103103
)

apps/viewer/apps/viewer/apps/viewer/cypress/e2e/mixins/video.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ export default function(fileName = 'image1.jpg', mimeType = 'image/jpeg') {
6868
})
6969

7070
it('See the menu icon and title on the viewer header', function() {
71-
cy.get('body > .viewer .modal-name').should('contain', fileName)
71+
cy.get('body > .viewer .modal-header__name').should('contain', fileName)
7272
cy.get('body > .viewer .modal-header button.action-item__menutoggle').should('be.visible')
7373
cy.get('body > .viewer .modal-header button.header-close').should('be.visible')
7474
})

0 commit comments

Comments
 (0)