Skip to content

Commit ce75755

Browse files
Merge pull request #2073 from nextcloud/backport/2052/stable28
[stable28] [master] Fix npm audit
2 parents f434199 + 8a48aa6 commit ce75755

File tree

6 files changed

+28
-31
lines changed

6 files changed

+28
-31
lines changed

β€Žcypress/e2e/sharing/download-share-disabled.cy.tsβ€Ž

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,13 @@ describe(`Download ${fileName} in viewer`, function() {
5555
})
5656

5757
it('Share the Photos folder with a share link and access the share link', function() {
58+
cy.on('uncaught:exception', (err) => {
59+
// This can happen because of blink engine handling animation, its not a bug just engine related.
60+
if (err.message.includes('ResizeObserver loop limit exceeded')) {
61+
return false
62+
}
63+
})
64+
5865
cy.createLinkShare('/Photos').then(token => {
5966
// Open the sidebar
6067
cy.visit('/apps/files')
3.4 KB
Loading
3.45 KB
Loading
5.62 KB
Loading
3.83 KB
Loading

β€Žpackage-lock.jsonβ€Ž

Lines changed: 21 additions & 31 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
Β (0)