所以我有以下内容:
angular.module('common.lodash', []).factory('_', function() {
_.additionFunctionOnLodashThatICreated = function(foo, bar, baz) { ... };
return _;
});
我在另一个模块中依赖 lodash:
angular.module('common.gridhelper', ['common.lodash']).factory('gridhelper', function(_) {
var service;
service.foo = function (collection) {
// find is a native function on lodash
return _.find(...);
}
return service;
});
当我在浏览器中导航到该站点时,一切都“正常”。但是,当我尝试编写几个测试时,我得到的结果好坏参半。
以下工作,所以我知道我的服务是可访问的:
describe('Lodash Service:', function() {
beforeEach(module('common.lodash'));
it('should get an instance of the lodash factory', inject(function(_) {
expect(_).toBeDefined();
}));
});
然而这失败了:
describe('GridHelper Service:', function() {
var gh;
beforeEach(function () {
angular.module('test', [
'common.lodash',
'common.gridhelper'
]);
});
beforeEach(module('test'));
it('should return a good foo', inject(function(gridhelper) {
gridhelper.foo({'a': { 'b': 0 }});
});
返回错误:
TypeError: 'undefined' is not an object (evaluating '_.find(...)')
为了好玩,我尝试在 gridhelper 服务中打印出“_”,当通过测试运行时它显示为 null,但在通过浏览器运行时填充。
有人对我缺少什么有想法吗?