-
Notifications
You must be signed in to change notification settings - Fork 27.4k
fr(ngMockE2E) add $httpbackend.resetBackendDefinitions #7238
Comments
why are you using ngMock in e2e tests? |
first, sorry for not using the template, I just discoverd it now... I am using ngMockE2E, not ngMock. What else would you suggest in my specific situation? It works just fine if I add the clearBackendDefinitions definition and does exactly what I need it to do, would there be a better way? |
dupe of #5766 |
you likely don't want to reset all definitiona but rather override it. that's what #5766 is about |
Ok so will this feature be added to ngMockE2E, there should be a way of re-setting the mocked or passThrough() requests without refreshing the browser. |
It is already possible to overwrite the responses without refreshing the browser. Why do you need to reset? |
then how do i overwrite something like $httpBackend.whenPOST('/.*/').passThrough(); ? |
Hi there,
consider this scenario:
I have a complex e2e test scenario where I first call
until a certain point in my testcase. After that point, i´d like to exchange the mock behaviour, and remove the "passTHrough-all-POST" and replace that with very specific mock responses such as
Currently, this won´t work since the "CatchAll-POST"-Rule will passThrough() all POST requests.
This could be changed if a new method is added, might be as simple as adding this to angular-mocks.js
What does the community think about such a method?
The text was updated successfully, but these errors were encountered: