Changed some of the fx/stop tests to handle the new test markup.
This commit is contained in:
parent
4a4d049df9
commit
80782d958c
1 changed files with 5 additions and 5 deletions
|
@ -106,7 +106,7 @@ test("stop() - several in queue", function() {
|
||||||
expect(4);
|
expect(4);
|
||||||
stop();
|
stop();
|
||||||
|
|
||||||
var $foo = jQuery("#nothiddendiv");
|
var $foo = jQuery("#nothiddendivchild");
|
||||||
var w = 0;
|
var w = 0;
|
||||||
$foo.hide().width(200).width();
|
$foo.hide().width(200).width();
|
||||||
|
|
||||||
|
@ -121,7 +121,7 @@ test("stop() - several in queue", function() {
|
||||||
|
|
||||||
nw = $foo.width();
|
nw = $foo.width();
|
||||||
ok( nw != w, "Stop didn't reset the animation " + nw + "px " + w + "px");
|
ok( nw != w, "Stop didn't reset the animation " + nw + "px " + w + "px");
|
||||||
equals( $foo.queue().length, 2, "The next animation continued" );
|
equals( $foo.queue().length, 1, "The next animation continued" );
|
||||||
$foo.stop(true);
|
$foo.stop(true);
|
||||||
start();
|
start();
|
||||||
}, 100);
|
}, 100);
|
||||||
|
@ -158,7 +158,7 @@ test("stop(clearQueue, gotoEnd)", function() {
|
||||||
expect(3);
|
expect(3);
|
||||||
stop();
|
stop();
|
||||||
|
|
||||||
var $foo = jQuery("#nothiddendiv");
|
var $foo = jQuery("#nothiddendivchild");
|
||||||
var w = 0;
|
var w = 0;
|
||||||
$foo.hide().width(200).width();
|
$foo.hide().width(200).width();
|
||||||
|
|
||||||
|
@ -172,10 +172,10 @@ test("stop(clearQueue, gotoEnd)", function() {
|
||||||
$foo.stop(false, true);
|
$foo.stop(false, true);
|
||||||
|
|
||||||
nw = $foo.width();
|
nw = $foo.width();
|
||||||
equals( nw, 200, "Stop() reset the animation" );
|
equals( nw, 1, "Stop() reset the animation" );
|
||||||
|
|
||||||
setTimeout(function(){
|
setTimeout(function(){
|
||||||
equals( $foo.queue().length, 3, "The next animation continued" );
|
equals( $foo.queue().length, 2, "The next animation continued" );
|
||||||
$foo.stop(true);
|
$foo.stop(true);
|
||||||
start();
|
start();
|
||||||
}, 100);
|
}, 100);
|
||||||
|
|
Loading…
Add table
Reference in a new issue