From 66c98419aa6f93deb2c3b7060191fc96c885dc29 Mon Sep 17 00:00:00 2001 From: John Resig Date: Tue, 21 Jul 2009 20:16:44 +0000 Subject: [PATCH] Retool the fx test again, making it more apparent which order the queue tests will complete in. --- test/unit/fx.js | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/test/unit/fx.js b/test/unit/fx.js index c6da80d60d..8af8031bf2 100644 --- a/test/unit/fx.js +++ b/test/unit/fx.js @@ -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() {