gpt4 book ai didi

unit-testing - 使用 angular2 测试 hammerjs 事件

转载 作者:太空狗 更新时间:2023-10-29 17:35:00 25 4
gpt4 key购买 nike

我正在构建一个测试套件并尝试覆盖 100% 的代码。问题是,我有平移回调函数。有人如何在 angular2 上使用 karma 和 jasmine 正确测试 hammerjs 事件吗?

HTML

<div (pan)="panning($event)" id="square">

typescript

public swiper($event) {
let e = $event;
let top = e.center.x - (e.target.clientHeight/2);
let left = e.center.y - (e.target.clientWidth/2);
e.target.style.transform = 'translate3d('+ top +'px, '+ left +'px, 0px)';
}

谢谢。

中号

最佳答案

您应该能够使用 this :

it('should call panning on pan', (async() => {
fixture.debugElement.query(By.css('#square')).triggerEventHandler("pan", myNiceEvent)
fixture.detectChanges()
fixture.whenStable().then(testMyChanges)
}

我知道这已经很长时间了,但我自己也为 Angular v5.2.0 而苦苦挣扎。

希望这会对某人有所帮助;)

关于unit-testing - 使用 angular2 测试 hammerjs 事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38249704/

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