我在文件 MainCtrl.js 中有一个名为 MainCtrl 的模块
angular.module("MainCtrl",['ui.bootstrap']);
我正在尝试完成 Jasmine 测试(使用 Karma)来验证控制器。理想情况下,我的应用程序将只包含一个模块 MainCtrl 和控制器,然后让我将所有控制器分隔在不同的文件中。
我在其他文件中有控制器,例如 ht 文件 loginCtrl.js 中的 loginCtrl
angular.module('MainCtrl').controller("LoginCtrl", ['$scope','Factory',
function ($scope, Factory) {
//code
}
]);
在我的单元测试中,我尝试这样做:
'use strict';
describe("Controllers", function() {
beforeEach(module('App'));
beforeEach(module('MainCtrl'));
beforeEach(module('services'));
describe("Unit Test LoginCtrl", function() {
var ctrl, Factory, scope, $compile , $httpBackend;
beforeEach(inject(function(_$compile_, _$httpBackend_, $rootScope, $controller,$injector) {
$httpBackend = _$httpBackend_;
$compile = _$compile_;
Factory = $injector.get('Factory');
scope = $rootScope.$new();
ctrl = $controller("LoginCtrl", {$scope: scope});
}));
it('should have a ReportIndividual controller', function() {
expect(ctrl).toBeDefined();
});
});
});
应用程序.js
var app = angular.module('App', [
'MainCtrl',
'services',
]);
我的 karma.conf.js
files: [
'jasmine.js',
'adapter.js',
'angular.js',
'angular-route.js',
'angular-mocks.js',
'jquery.min.js',
'app.js',
{pattern: 'scripts/*.js', watched: true, included: true, served: true},
{pattern: 'tests/unit/*Spec.js', watched: true, included: true, served: true}
],
当我开始测试时,我在浏览器控制台中收到此消息:
"minErr/<@http://localhost:9876/base/angular.js:78
loadModules/<@http://localhost:9876/base/angular.js:3703
forEach@http://localhost:9876/base/angular.js:322
loadModules@http://localhost:9876/base/angular.js:3668
createInjector@http://localhost:9876/base/angular.js:3608
workFn@http://localhost:9876/base//angular-mocks.js:2139
当我将 [] 添加到声明模块时,测试工作但不是应用程序:(:
angular.module('MainCtrl',[]).controller("LoginCtrl", ['$scope','Factory',
function ($scope, Factory) {
//code
}
]);
想寻求帮助:)