javascript - angularJS: unit tests gives: Unknown provider: $httpProviderProvider <- $httpProvider - Stack Overflow

In one of my unit tests I'm trying to dobeforeEach(function () {angular.mock.inject(function ($inj

In one of my unit tests I'm trying to do

beforeEach(function () {
    angular.mock.inject(function ($injector) {
        $httpBackend = $injector.get('$httpBackend');
        mockUserResource = $injector.get('User');
        $httpProvider = $injector.get('$httpProvider');  // <-- problem
        $httpProvider.interceptors.push('myInterceptor');
    });
});

(demo)

Why is it not possible to inject $httpProvider ?

The reason I'm doing this is because I don't load the file which adds all my interceptors, because I want to test them one by one!

In one of my unit tests I'm trying to do

beforeEach(function () {
    angular.mock.inject(function ($injector) {
        $httpBackend = $injector.get('$httpBackend');
        mockUserResource = $injector.get('User');
        $httpProvider = $injector.get('$httpProvider');  // <-- problem
        $httpProvider.interceptors.push('myInterceptor');
    });
});

(demo)

Why is it not possible to inject $httpProvider ?

The reason I'm doing this is because I don't load the file which adds all my interceptors, because I want to test them one by one!

Share Improve this question asked Nov 4, 2013 at 12:04 Jeanluca ScaljeriJeanluca Scaljeri 29.2k66 gold badges235 silver badges381 bronze badges 1
  • Top notch question, so concise and easy to search for! I was having this exact problem. – Breedly Commented Nov 13, 2014 at 21:17
Add a ment  | 

2 Answers 2

Reset to default 10

Providers are only injectable in the config phase, angular.config.

According to this answer, you could try something like:

beforeEach(module('yourModule', function($httpProvider) {
  $httpProvider.interceptors.push('myInterceptor');
}));

beforeEach(function() {
  angular.mock.inject(function($injector) {
    $httpBackend = $injector.get('$httpBackend');
    mockUserResource = $injector.get('User');
  });
});

For more information on how dependency injection works, this is a great article (not written by the AngularJS team)

The name Provider is automatically added by angular. So, you should just inject $http.

$httpProvider = $injector.get('$http'); 

here is a working fork of your fiddle.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743703774a4493019.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信