mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Test: Switch leftover andSelf to addBack
This commit is contained in:
parent
f1913cf031
commit
2ea57c1002
2
test/unit/effects.js
vendored
2
test/unit/effects.js
vendored
@ -1687,7 +1687,7 @@ test( "hide should not leave hidden inline elements visible (#14848)", 2, functi
|
||||
});
|
||||
|
||||
test( "Handle queue:false promises", 10, function() {
|
||||
var foo = jQuery( "#foo" ).clone().andSelf(),
|
||||
var foo = jQuery( "#foo" ).clone().addBack(),
|
||||
step = 1;
|
||||
|
||||
foo.animate({
|
||||
|
@ -10,7 +10,7 @@ test( "find(String) under non-elements", function() {
|
||||
|
||||
var j = jQuery("#nonnodes").contents();
|
||||
equal( j.find("div").length, 0, "Check node,textnode,comment to find zero divs" );
|
||||
equal( j.find("div").andSelf().length, 3, "Check node,textnode,comment to find zero divs, but preserves pushStack" );
|
||||
equal( j.find("div").addBack().length, 3, "Check node,textnode,comment to find zero divs, but preserves pushStack" );
|
||||
});
|
||||
|
||||
test( "find(leading combinator)", function() {
|
||||
@ -47,7 +47,7 @@ test( "find(node|jQuery object)", function() {
|
||||
equal( $two.find( $first ).length, 0, "first is in the collection and not within two" );
|
||||
equal( $two.find( $first ).length, 0, "first is in the collection and not within two(node)" );
|
||||
|
||||
equal( $two.find( $foo[ 0 ] ).andSelf().length, 2, "find preserves the pushStack, see #12009" );
|
||||
equal( $two.find( $foo[ 0 ] ).addBack().length, 2, "find preserves the pushStack, see #12009" );
|
||||
});
|
||||
|
||||
test("is(String|undefined)", function() {
|
||||
|
Loading…
Reference in New Issue
Block a user