我的 Angular 应用程序运行良好,我的测试也是如此,使用 karma 和 jasmine,直到我在ui.bootstrap
. 现在该应用程序仍按预期工作,但我无法运行我的测试。这就是我所拥有的:
app.js - 在ui.bootstrap中添加了依赖项
angular.module('myApp', ['ngResource', 'ngRoute', 'ui.bootstrap']).config(function(...) {...});
服务.js
angular.module('myApp').service('myService', function () {})
控制器.js
angular.module('myApp').controller('MyController', function ($scope, $http, myService) {})
测试/main.js
describe('Controller: MyController', function () {
var MyController, scope;
// load the controller's module
beforeEach(function(){
module('myApp');
inject(function ($controller, $rootScope) {
scope = $rootScope.$new();
MyController = $controller('MyController', {
$scope:scope
});
});
});
it('should do something', function () {
expect(scope.myOptions.length).toBe(5);
});
});
我使用 grunt 和 krama 运行的测试由于以下原因而失败:
Error: [$injector:modulerr] Failed to instantiate module myApp due to:
Error: [$injector:modulerr] Failed to instantiate module ui.bootstrap due to:
Error: [$injector:nomod] Module 'ui.bootstrap' is not available! You either misspelled the module name or forgot
我错过了什么?该应用程序运行没有问题,只有测试失败。