0

我的模块配置块中有以下内容:

var appModule = angular.module('myApp',['ngRoute'])
.config(['$httpProvider', '$routeProvider', '$locationProvider', '$translateProvider', function ($httpProvider, $routeProvider, $locationProvider, $translateProvider) {

    $locationProvider.html5Mode(true)

    $routeProvider
        .when('/services/main', {templateUrl: '/services/main/html/main.html', controller: 'MainCtrl', resolve: {
            myVar: function (varService) {
                return varService.invokeService();
            }
        }})
}])

规格文件:

describe("Unit Testing: config - ", function() {

var appModule;
var routes;

beforeEach(function() {
    appModule = angular.module("myApp");
});

it('should test routeProvider', function() {

      inject(function($route, $location, $rootScope) {
          routes = $route;
      });
    }); 
});

但是,在运行测试时出现以下错误:

Unit Testing: config -  should test routeProvider FAILED
Error: [$injector:unpr] http://errors.angularjs.org/1.2.15/$injector/unpr?p0=%24routeProvider%20%3C-%20%24route
    at Error (native)

我的业力配置包括 angular-route.min.js 文件。任何建议都会有所帮助。

4

1 回答 1

1

使用 angular.mock.module 而不是 angular.module 解决了该问题。

appModule = angular.mock.module("myApp");

我发现我们应该使用 mock 来注入模块,它包括配置以及模块用于注册新模块的位置。因此,如果引用已经注册的模块,我们应该使用 angular.mock.module。

文档说:

This function registers a module configuration code. It collects the configuration information which will be used when the injector is created by inject.
于 2014-06-04T07:55:06.753 回答