aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/fx.js
diff options
context:
space:
mode:
authorJohn Resig <jeresig@gmail.com>2009-02-17 16:39:33 +0000
committerJohn Resig <jeresig@gmail.com>2009-02-17 16:39:33 +0000
commit80782d958c63bf9a6c5e602e1dc945ae1df20e83 (patch)
tree65a51af1c019fe6fbfae99c41bc5aba2989822c4 /test/unit/fx.js
parent4a4d049df9be6d0df5a331cb08d7b95564bc5ee2 (diff)
downloadjquery-80782d958c63bf9a6c5e602e1dc945ae1df20e83.tar.gz
jquery-80782d958c63bf9a6c5e602e1dc945ae1df20e83.zip
Changed some of the fx/stop tests to handle the new test markup.
Diffstat (limited to 'test/unit/fx.js')
-rw-r--r--test/unit/fx.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/unit/fx.js b/test/unit/fx.js
index 573474bec..c3dd30b38 100644
--- a/test/unit/fx.js
+++ b/test/unit/fx.js
@@ -106,7 +106,7 @@ test("stop() - several in queue", function() {
expect(4);
stop();
- var $foo = jQuery("#nothiddendiv");
+ var $foo = jQuery("#nothiddendivchild");
var w = 0;
$foo.hide().width(200).width();
@@ -121,7 +121,7 @@ test("stop() - several in queue", function() {
nw = $foo.width();
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);
start();
}, 100);
@@ -158,7 +158,7 @@ test("stop(clearQueue, gotoEnd)", function() {
expect(3);
stop();
- var $foo = jQuery("#nothiddendiv");
+ var $foo = jQuery("#nothiddendivchild");
var w = 0;
$foo.hide().width(200).width();
@@ -172,10 +172,10 @@ test("stop(clearQueue, gotoEnd)", function() {
$foo.stop(false, true);
nw = $foo.width();
- equals( nw, 200, "Stop() reset the animation" );
+ equals( nw, 1, "Stop() reset the animation" );
setTimeout(function(){
- equals( $foo.queue().length, 3, "The next animation continued" );
+ equals( $foo.queue().length, 2, "The next animation continued" );
$foo.stop(true);
start();
}, 100);