Fixed wrap test that was looking for comment values from .text().

This commit is contained in:
jeresig 2009-11-30 13:46:14 -05:00
parent df6e02a4a7
commit c7407bd4fc

View file

@ -37,7 +37,7 @@ var testWrap = function(val) {
var j = jQuery("#nonnodes").contents();
j.wrap(val( "<i></i>" ));
equals( jQuery("#nonnodes > i").length, 3, "Check node,textnode,comment wraps ok" );
equals( jQuery("#nonnodes > i").text(), j.text() + j[1].nodeValue, "Check node,textnode,comment wraps doesn't hurt text" );
equals( jQuery("#nonnodes > i").text(), j.text(), "Check node,textnode,comment wraps doesn't hurt text" );
// Try wrapping a disconnected node
j = jQuery("<label/>").wrap(val( "<li/>" ));