在我的茉莉花测试中,我通过以下方式测试应用初始化:
(function () {
"use strict";
describe('app', function () {
beforeEach(function() {
module('app');
});
it('should load without errors', function() {
expect(function() {
angular.bootstrap(angular.element('body'), ['app']);
}).not.toThrow();
});
});
}());
我的问题是,当我经常使用Karma时,我常常得到:
Expected function not to throw an exception , but it threw [ng:btstrpd] App Already Bootstrapped with this Element '<body>'
我认为最好的解决方案是在afterEach中“取消引导”应用程序,但我在文档中找不到任何方法。
有什么想法吗?
答案 0 :(得分:0)
你做错了方法,因为你不能“取消引导”角度。相反,当它不需要时,不要首先引导它:从运行茉莉花测试的marup中删除“ng-app”指令。