Fix uncaught:exception for Firefox (#3356)

main
Dmitry Kruchinin 5 years ago committed by GitHub
parent 1a86efe65e
commit 463199622c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -17,7 +17,9 @@ before(() => {
cy.closeModalUnsupportedPlatform();
});
const resizeObserverLoopErr = 'ResizeObserver loop limit exceeded';
// Chrome: ResizeObserver loop limit exceeded
// Firefox: ResizeObserver loop completed with undelivered notifications
const resizeObserverLoopErr = 'ResizeObserver loop';
Cypress.on('uncaught:exception', (err) => {
// the exception is generated by cypress in some browsers
if (err.message.includes(resizeObserverLoopErr)) {

Loading…
Cancel
Save