X-Git-Url: http://git.asbjorn.it/?a=blobdiff_plain;f=test%2Funit%2Ffx.js;h=2ee3d30db99d3a9bbdb67bdb247d2e08cc781481;hb=4afa60835146e71c0e57b492a1cca278eaf1ef9c;hp=8af92979e25ad72f1e4dc8afef33736d1ace930d;hpb=1b0276dc57cbca869027ba19986b0810f7042854;p=jquery.git diff --git a/test/unit/fx.js b/test/unit/fx.js index 8af9297..2ee3d30 100644 --- a/test/unit/fx.js +++ b/test/unit/fx.js @@ -34,23 +34,6 @@ test("animate option (queue === false)", function () { }); }); -test("queue() defaults to 'fx' type", function () { - expect(2); - stop(); - - var $foo = jQuery("#foo"); - $foo.queue("fx", [ "sample", "array" ]); - var arr = $foo.queue(); - isSet(arr, [ "sample", "array" ], "queue() got an array set with type 'fx'"); - $foo.queue([ "another", "one" ]); - var arr = $foo.queue("fx"); - isSet(arr, [ "another", "one" ], "queue('fx') got an array set with no type"); - // clean up after test - $foo.queue([]); - - start(); -}); - test("stop()", function() { expect(3); stop();