How do I debug a “[object ErrorEvent] thrown” error in my Karma/Jasmine tests?

后端 未结 17 2320
生来不讨喜
生来不讨喜 2020-12-04 09:51

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

17条回答
  •  感动是毒
    2020-12-04 10:02

    [object ErrorEvent] thrown

    This error shows that you have something undefined. The easiest way to debug it from my experience is :

    it('should create', () => {
        console.log(component);
        // You can check in the browser log which property is undefined
        });
    

提交回复
热议问题