@aerogel/core 0.1.1-next.9089cf50b6e252df5d7c6f134d3d287dae86fc73 → 0.1.1-next.99766defd90af84297715d34b226d66e90304026

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aerogel/core",
3
- "version": "0.1.1-next.9089cf50b6e252df5d7c6f134d3d287dae86fc73",
3
+ "version": "0.1.1-next.99766defd90af84297715d34b226d66e90304026",
4
4
  "type": "module",
5
5
  "sideEffects": false,
6
6
  "exports": {
@@ -1,8 +1,10 @@
1
+ import { isTesting } from '@noeldemartin/utils';
1
2
  import type { App as AppInstance } from 'vue';
2
3
 
3
4
  import App from '@aerogel/core/services/App';
4
5
  import { bootServices } from '@aerogel/core/services';
5
6
  import { definePlugin } from '@aerogel/core/plugins';
7
+ import { getErrorMessage } from '@aerogel/core/errors/utils';
6
8
 
7
9
  import Errors from './Errors';
8
10
  import settings from './settings';
@@ -16,6 +18,13 @@ export type { ErrorSource, ErrorReport, ErrorReportLog };
16
18
 
17
19
  const services = { $errors: Errors };
18
20
  const frameworkHandler: ErrorHandler = (error) => {
21
+ if (
22
+ isTesting('e2e') &&
23
+ getErrorMessage(error).includes('ResizeObserver loop completed with undelivered notifications.')
24
+ ) {
25
+ return true;
26
+ }
27
+
19
28
  Errors.report(error);
20
29
 
21
30
  return true;