Fix test failures

This commit is contained in:
Nathan Shively-Sanders
2017-10-03 13:43:36 -07:00
parent ba5a8c2243
commit 32ae9f623b
2 changed files with 4 additions and 4 deletions

View File

@@ -94,7 +94,7 @@ function JQueryStatic() {
}
function step() {
// $ExpectType PlainObject<AnimationHook<HTMLElement>>
// $ExpectType PlainObject<AnimationHook<Node>>
$.fx.step;
}
}
@@ -3375,10 +3375,10 @@ function JQuery() {
}
]);
// $ExpectType Queue<HTMLElement>
// $ExpectType Queue<Node>
$('p').queue('myQueue');
// $ExpectType Queue<HTMLElement>
// $ExpectType Queue<Node>
$('p').queue();
}