Skip to content
This repository was archived by the owner on Apr 18, 2024. It is now read-only.

Commit 3aa04f5

Browse files
Gondragoshlomzik
andauthored
Ignore not meaningful error (#413)
(cherry picked from commit 763b455) Co-authored-by: hlomzik <[email protected]>
1 parent ed04af1 commit 3aa04f5

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

e2e/fragments/ErrorsCollector.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ function startErrorsCollector(done) {
99
}
1010

1111
CEErrorsCollector.prototype.errorHandler = function(ev) {
12+
// Ignore not meaningful error
13+
if (ev.message === "ResizeObserver loop limit exceeded") return;
14+
1215
this.errors.push(ev.message);
1316
};
1417
CEErrorsCollector.prototype.destroy = function() {

0 commit comments

Comments
 (0)