在 Vojta 关于测试指令的项目中,这段代码有什么作用?
// load the tabs code
beforeEach(module('tabs'));
它说它加载标签代码但是,为什么?tabs 模块不是已经在这里定义了吗?
var tabs = angular.module('tabs', []);
有人可以简要解释一下在角度测试中应该加载什么以及如何加载?
我试图在我的测试中调用这个函数,就像这样
beforeEach(module('utils')) ;
我得到这个错误:
TypeError: Property 'module' of object [object Object] is not a function
另外,当我尝试像这样加载我的模板时
beforeEach(module('templates/loadingBar.html'));
我收到此错误:
Error: No module: templates/loadingBar.html
我真的对整个过程感到困惑。
感谢您的帮助...