So i have done quite a research already before asking this and none of them is what i want.
I have an app bootstrapped with angular module. The controller inside the module makes some http requests. Now i am unit testing my app for ui and i need to mock the http requests. All the mocking that i have read is done with jasmine, but i don't want to use it.
I want that whenever i open the app, all the requests get mocked. I have already tried angular mock and the backend mocks, none of them workes. And i dont want to prepopulate the scope elements because the code should be deployment ready.
If you want to mock your backend during development, just install
angular-mocks
in your main html file, add it up as a dependency in your application (angular.module('myApp', ['ngMockE2E'])
) and then mock the requests you need to.E.g.
Be wary though, that adding the
ngMockE2E
will require you to set up your routes in case you do so through AngularJS routing.E.g.