]> source.dussan.org Git - jquery.git/commitdiff
Give .stop() queue animations more leeway for Stutterin' Swarmy.
authorDave Methvin <dave.methvin@gmail.com>
Thu, 26 Jul 2012 01:33:30 +0000 (21:33 -0400)
committerDave Methvin <dave.methvin@gmail.com>
Thu, 26 Jul 2012 01:33:30 +0000 (21:33 -0400)
This test sometimes fails with only 2 animations left in the queue, so this extends the first animation in case we're running afoul of the one-second rule for background windows.

test/unit/effects.js

index 6d200b534d698ea7f01a6cbe4eb1cb89823192d7..806192ea0e4c3387f7c7941112f5a4fa74c60e7c 100644 (file)
@@ -598,7 +598,7 @@ test("stop() - several in queue", function() {
        var w = 0;
        $foo.hide().css( "width", 200 ).css("width");
 
-       $foo.animate({ "width": "show" }, 1000);
+       $foo.animate({ "width": "show" }, 1500);
        $foo.animate({ "width": "hide" }, 1000);
        $foo.animate({ "width": "show" }, 1000);
        setTimeout(function(){
@@ -612,7 +612,7 @@ test("stop() - several in queue", function() {
 
                $foo.stop(true);
                start();
-       }, 100);
+       }, 200);
 });
 
 test("stop(clearQueue)", function() {