mirror of
https://github.com/jquery/jquery.git
synced 2025-01-10 18:24:24 +00:00
Followup to gh-997, decode entities in test names. Close gh-1013.
This commit is contained in:
parent
14e1501b89
commit
e2cdf527d6
@ -829,7 +829,7 @@ var testPrepend = function(val) {
|
|||||||
equal( jQuery("#sap").text(), expected, "Check for prepending of array of jQuery objects" );
|
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);
|
testPrepend(manipulationBareObj);
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -888,7 +888,7 @@ test("prepend(Function) with incoming value", function() {
|
|||||||
equal( jQuery("#sap").text(), expected, "Check for prepending of jQuery object" );
|
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);
|
expect(6);
|
||||||
var defaultText = "Try them out:";
|
var defaultText = "Try them out:";
|
||||||
jQuery("<b>buga</b>").prependTo("#first");
|
jQuery("<b>buga</b>").prependTo("#first");
|
||||||
@ -948,7 +948,7 @@ var testBefore = function(val) {
|
|||||||
equal( set.length, 1, "Insert the element before the disconnected node. should be a no-op" );
|
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);
|
testBefore(manipulationBareObj);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user