我是为 angularJS 工厂编写 jasmine 测试用例的新手。我想测试整个工厂,但我无法获取getKeys
. 这里是我的工厂。
我的工厂是:
'use strict';
var a11yModule = angular.module('TestModule', ['ui.bootstrap']);
a11yModule.factory('TestFacotry', ['$q', '$timeout', function ($q, $timeout) {
return {
getKeys: function () {
return {
"abc": 32,
"gpa": 33,
"end": 35
};
}
};
}])
我的单位规格是:
describe('modu testing', function () {
var TestFacotryMock, q, timeout;
beforeEach(module('TestModule', ['ui.bootstrap']));
beforeEach(inject(function (_$q_, _$timeout_, _TestFacotry_) {
q = _$q_;
timeout = _$timeout_;
TestFacotryMock = _TestFacotry_;
}));
it('Should ', function () {
//var output = TestFacotryMock.getKeys.something();
expect(typeof getKeys()).toBe('function');
});
});
错误是
错误:[$injector:modulerr] 无法实例化模块 TestModule,原因是:错误:[$injector:modulerr] 无法实例化模块 ui.bootstrap,原因是:错误:[$injector:nomod] 模块 'ui.bootstrap' 不是可用的!您要么拼错了模块名称,要么忘记加载它。如果注册模块,请确保将依赖项指定为第二个参数。