Skip to content

Commit

Permalink
Removed a unit test that tested to see if queued objects were of a ce…
Browse files Browse the repository at this point in the history
…rtain type. It was decided you can queue anything and it is up to the coder to make sure it was intended.
  • Loading branch information
davids549 committed Dec 20, 2007
1 parent 1764027 commit 259c8aa
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions test/unit/fx.js
Expand Up @@ -8,12 +8,6 @@ test("animate(Hash, Object, Function)", function() {
$('#foo').animate(hash, 0, function() { $('#foo').animate(hash, 0, function() {
ok( hash.opacity == hashCopy.opacity, 'Check if animate changed the hash parameter' ); ok( hash.opacity == hashCopy.opacity, 'Check if animate changed the hash parameter' );
}); });
// using contents will get comments regular, text, and comment nodes
$("#nonnodes").contents().animate({paddingLeft:"5px"}, 100, function () {
equals(this.nodeType, 1, "Check node,textnode,comment animate just does real nodes" );
equals($(this).css("paddingLeft"), "5px", "Check node,textnode,comment animate just does real nodes" );
start();
});
}); });


test("animate option (queue === false)", function () { test("animate option (queue === false)", function () {
Expand Down

0 comments on commit 259c8aa

Please sign in to comment.