diff options
author | Christopher Ng <chrng8@gmail.com> | 2024-03-12 14:25:41 -0700 |
---|---|---|
committer | Christopher Ng <chrng8@gmail.com> | 2024-03-12 15:01:45 -0700 |
commit | 84ceaddc667860b99699ea290a11ac79ce9f0a7a (patch) | |
tree | b2ac44fd0fe99874f3f6c44cf31001092399257d /cypress | |
parent | c7fc4b10100686c251637876ecdd15fda3c3d2db (diff) | |
download | nextcloud-server-84ceaddc667860b99699ea290a11ac79ce9f0a7a.tar.gz nextcloud-server-84ceaddc667860b99699ea290a11ac79ce9f0a7a.zip |
fix(cypress): ResizeObserver loop undelivered notifications error
Signed-off-by: Christopher Ng <chrng8@gmail.com>
Diffstat (limited to 'cypress')
-rw-r--r-- | cypress/support/e2e.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cypress/support/e2e.ts b/cypress/support/e2e.ts index 6cf83e94961..ff888fe7d5a 100644 --- a/cypress/support/e2e.ts +++ b/cypress/support/e2e.ts @@ -25,3 +25,4 @@ import './commands.ts' // Fix ResizeObserver loop limit exceeded happening in Cypress only // @see https://github.com/cypress-io/cypress/issues/20341 Cypress.on('uncaught:exception', err => !err.message.includes('ResizeObserver loop limit exceeded')) +Cypress.on('uncaught:exception', err => !err.message.includes('ResizeObserver loop completed with undelivered notifications')) |