gpt4 book ai didi

unit-testing - 如何在AngularJS单元测试中将div添加到DOM中?

转载 作者:行者123 更新时间:2023-12-04 03:21:34 33 4
gpt4 key购买 nike

我在指令中使用以下代码来放置工具提示

var bodyoffset = document.querySelector(".smallcontainer-content").getBoundingClientRect();
var width = elm.width();
if(bodyoffset != undefined){
var tooltipDiv = document.querySelector(".tooltip");
angular.element(tooltipDiv).css("top", offset.top-bodyoffset.top+"px");
angular.element(tooltipDiv).css("left", offset.left-bodyoffset.left+width+5+"px");
}

这在单元测试中不起作用,因为不存在“smallcontainer”类所在的div。如何确保在单元测试中创建了div,以便可以测试所有功能?

最佳答案

这是我设法做到的方式:

beforeEach(inject(
['$compile','$rootScope', function(_$compile_) {
var html = '<div class="smallcontainer-content"></div>';
angular.element(document.body).append(html);
elm = angular.element('<form name="form"><input name="password" id="passwordInput" data-ng-model="password" size="25" type="password" maxlength="20" tabindex="1" autofocus data-my-password-check></form>');
$compile(elm)($rootScope);
form = $rootScope.form;

}]
));

在此处将html添加到文档中的重要部分是angular.element()。append()。

我在 http://www.yearofmoo.com/2013/01/full-spectrum-testing-with-angularjs-and-karma.html#testing-filters的中途测试代码示例中发现了这一点

关于unit-testing - 如何在AngularJS单元测试中将div添加到DOM中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17991799/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com