我试图在D3指令中测试from
和mouseover
事件。以下是我试图测试的代码部分:
mouseout
以下是这些特定测试的相关茉莉花代码:
var nodeEnter = node.enter().append('svg:g')
.attr('class', 'node')
.attr('transform', function(d) {
return 'translate(' + d.x + ',' + d.y + ')';
})
.attr('filter', 'url(' + $location.path() + '#drop-shadow)')
.on('mouseover', function(d) {
tooltip.transition()
.duration(200)
.style('opacity', 0.75);
tooltip.html(d.email)
.style('left', (d3.event.pageX - 50) + 'px')
.style('top', (d3.event.pageY - 50) + 'px');
d.scale = 1.5;
tick();
})
.on('mouseout', function(d) {
tooltip.transition()
.duration(200)
.style('opacity', 0);
d.scale = 1;
tick();
})
对于这些鼠标事件应调用的函数在我的代码覆盖率中保持红色,如果它们从未被触发过。任何人都知道为什么会这样?
答案 0 :(得分:1)
This已为我效劳:
使用jQuery:
beforeEach(function(){
$.fn.triggerSVGEvent = function(eventName) {
var event = document.createEvent('SVGEvents');
event.initEvent(eventName, true, true);
this[0].dispatchEvent(event);
return $(this)
}
})
然后在测试中:
it('should trigger mouse events', function() {
$(yourSelector).triggerSVGEvent('mouseover');
$(yourSelector).triggerSVGEvent('mouseout');
})