I use ngMock module to mock a several requests like so:
$httpBackend.whenGET("/accounts").respond([obj]);
However, it seems that loading the module expects you to mock ALL requests. So if I do any other request other than those I mocked, I get "Unexpected request" error.
How can I configure it so that it ONLY intercepts requests that I mock explicitly, and passes everything else through?