Merge pull request #1171 from pygy/remove-test

Remove questionable test
This commit is contained in:
Leo Horie 2016-07-25 10:06:48 -04:00 committed by GitHub
commit d64c6175a9

View file

@ -124,32 +124,4 @@ o.spec("mount", function() {
done()
}, FRAME_BUDGET)
})
o("updates when new mounts are instantiated", function(done) {
var onupdate = o.spy()
render(root, [
m("div[id=a]"),
m("div[id=b]")
])
mount(root.childNodes[0], {
view : function() {
return m("div", {
onupdate : onupdate
})
}
})
mount(root.childNodes[1], {
view : function() {
return m("div", {
oncreate : function(){
o(onupdate.callCount).equals(1)
done()
}
})
}
})
})
})