Problem :
I am facing following Jasmine issue and looking for solution:
async callback was not invoked within timeout specified by jasmine.default_timeout_interval.
The issue comes up if following condion is met :
var service; beforeEach(function(_TestService_) { service = _TestService_; });
To fix the issue just wrap the function with inject to properly retrieve the service:
var service; beforeEach(inject(function(_TestService_) { service = _TestService_; }));