I wrote some unit tests for my Angular app, and they all pass when I run ng test, which is great. However, the test is still considered as not successful because of an error thrown at the end:
An error was thrown in afterAll
TypeError: env.catchExceptions is not a function
After some research, all I found is this Github issue saying to downgrade to jasmine 2.99, but it did not work for me.
I am using Angular 10, and testing with Jasmine and Karma.
