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.
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(){
$foo.stop(true);
start();
- }, 100);
+ }, 200);
});
test("stop(clearQueue)", function() {