[Vuejs]-VueJs how to remove global error handler for testing with vue-test-utils

0👍

Thanks to the hints by @tony19 I found the solution: There was a plugin from Elastic called APM (Application Performace Monitoring) that was inside my router/index.js: import { ApmVuePlugin } from '@elastic/apm-rum-vue';

This was reponsible for the duplicate Global error handler, deactivating it during tests solved the error message.

Leave a comment