fix event removal in diff

fix CI
This commit is contained in:
Leo Horie 2016-08-12 22:08:02 -04:00
parent fc9d4f2ee4
commit 6c3036e5c6
10 changed files with 37 additions and 67 deletions

View file

@ -33,6 +33,21 @@ o.spec("event", function() {
o(onevent.args[0].type).equals("click")
o(onevent.args[0].target).equals(div.dom)
})
o("removes event", function() {
var spy = o.spy()
var vnode = {tag: "a", attrs: {onclick: spy}}
var updated = {tag: "a", attrs: {}}
render(root, [vnode])
render(root, [updated])
var e = $window.document.createEvent("MouseEvents")
e.initEvent("click", true, true)
vnode.dom.dispatchEvent(e)
o(spy.callCount).equals(0)
})
o("fires onclick only once after redraw", function() {
var spy = o.spy()