标签: angular jasmine karma-runner
<input type="checkbox" class="mocked_as_radio_button" (keyup.space)="spaceKeyPress($event)">
我有一个输入元素,它是一个复选框。 我想模拟keyup.space事件来测试
spaceKeyPress($event)
不想使用jQuery。
答案 0 :(得分:7)
我想你正在寻找:
debugElement.triggerEventHandler('keyup.space', {});
<强> Plunker Example 强>
另见angular2文档