Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Retool the fx test again, making it more apparent which order the que…
…ue tests will complete in.
  • Loading branch information
jeresig committed Jul 21, 2009
1 parent db82262 commit 66c9841
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions test/unit/fx.js
Expand Up @@ -53,20 +53,16 @@ test("animate option (queue === false)", function () {
var order = [];

var $foo = jQuery("#foo");
$foo.animate({width:'100px'}, 200, function () {
$foo.animate({width:'100px'}, 3000, function () {
// should finish after unqueued animation so second
order.push(2);
isSet( order, [ 1, 2 ], "Animations finished in the correct order" );
start();
});
$foo.animate({fontSize:'2em'}, {queue:false, duration:10, complete:function () {
// short duration and out of queue so should finish first
order.push(1);
}});
$foo.animate({height:'100px'}, 100, function() {
// queued behind the first animation so should finish third
order.push(3);
isSet( order, [ 1, 2, 3], "Animations finished in the correct order" );
start();
});
});

test("animate duration 0", function() {
Expand Down

0 comments on commit 66c9841

Please sign in to comment.