I have several failing tests that only output [object ErrorEvent] thrown
. I don\'t see anything in the console that helps me pinpoint the offending code. Is t
I had the same problem. One way this error happens is when you try to access anything null or undefined in template. Make sure you have safety checking on those variable.
For example this will throw [object: ErrorEvent] when config is undefined on component load.
template.html
.....
......
Do this instead
.....
......