Is there a way to verify that an ajax request has not been made using Angular's $httpBackend? I attempted to use verifyNoOutstandingRequest() but it doesn't seem to be triggering test failures in version 1.1.5.
Here is more information about the scenario:
In my database module, I am utilizing ngResource to connect to the server-side database. I have configured it so that the GET all operation is cached client-side, meaning only the initial call to my getTable('tableName') method should trigger an ajax request. Therefore, the objective of the test is to confirm that the first call results in an ajax request, while subsequent calls do not.