Skip to content

Commit

Permalink
fix(tests): add another resize loop error message to the ignore list
Browse files Browse the repository at this point in the history
Fixes #821
  • Loading branch information
florian-sanders-cc committed Aug 28, 2023
1 parent e8e6980 commit b3010a4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/helpers/accessibility.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ before(() => {
window.onerror = function (err) {
switch (err) {
case 'ResizeObserver loop limit exceeded':
console.warn('Ignored: ResizeObserver loop limit exceeded');
return false;
case 'ResizeObserver loop completed with undelivered notifications.':
return false;
case 'Uncaught IndexSizeError: Failed to execute \'getImageData\' on \'CanvasRenderingContext2D\': The source width is 0.':
return false;
Expand Down

0 comments on commit b3010a4

Please sign in to comment.