equal( jQuery("#sap").text(), expected, "Check for prepending of array of jQuery objects" );
};
-test("prepend(String|Element|Array<Element>|jQuery)", function() {
+test("prepend(String|Element|Array<Element>|jQuery)", function() {
testPrepend(manipulationBareObj);
});
equal( jQuery("#sap").text(), expected, "Check for prepending of jQuery object" );
});
-test("prependTo(String|Element|Array<Element>|jQuery)", function() {
+test("prependTo(String|Element|Array<Element>|jQuery)", function() {
expect(6);
var defaultText = "Try them out:";
jQuery("<b>buga</b>").prependTo("#first");
equal( set.length, 1, "Insert the element before the disconnected node. should be a no-op" );
};
-test("before(String|Element|Array<Element>|jQuery)", function() {
+test("before(String|Element|Array<Element>|jQuery)", function() {
testBefore(manipulationBareObj);
});