Skip to content

Commit

Permalink
Temporary ignore ResizeObserver error (benetech#442)
Browse files Browse the repository at this point in the history
  • Loading branch information
stepan-anokhin committed Oct 21, 2021
1 parent 01f44a1 commit 4506186
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
7 changes: 6 additions & 1 deletion web/e2e/cypress/integration/app_menu_spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,12 @@ describe("Application Sidebar Menu", () => {
// It is healthy to ignore this error
// See https://stackoverflow.com/a/50387233 for more details.
ignoreUncaughtError(withMessage("ResizeObserver loop limit exceeded"));

// TODO: investigate and fix the following error (#442)
ignoreUncaughtError(
withMessage(
"ResizeObserver loop completed with undelivered notifications."
)
);
cy.visit("/");
});

Expand Down
6 changes: 6 additions & 0 deletions web/e2e/cypress/integration/collection_page_spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,12 @@ describe("The Collection Page", () => {
// It is healthy to ignore this error
// See https://stackoverflow.com/a/50387233 for more details.
ignoreUncaughtError(withMessage("ResizeObserver loop limit exceeded"));
// TODO: investigate and fix the following error (#442)
ignoreUncaughtError(
withMessage(
"ResizeObserver loop completed with undelivered notifications."
)
);

cy.visit("/collection/fingerprints");
});
Expand Down

0 comments on commit 4506186

Please sign in to comment.