From: Ariel Flesler Date: Tue, 16 Dec 2008 00:05:04 +0000 (+0000) Subject: testrunner: re adding the test for a function within isFunction. X-Git-Url: http://git.asbjorn.biz/?a=commitdiff_plain;h=e611289a79d959c1185d002c29093e9809b6dec8;hp=475f89b6519c95f730ed04cd3dd715f582873e4d;p=jquery.git testrunner: re adding the test for a function within isFunction. --- diff --git a/test/unit/core.js b/test/unit/core.js index 686899e..45003e8 100644 --- a/test/unit/core.js +++ b/test/unit/core.js @@ -1708,9 +1708,7 @@ test("jQuery.makeArray", function(){ ok( !!jQuery.makeArray( document.documentElement.childNodes ).slice(0,1)[0].nodeName, "Pass makeArray a childNodes array" ); // function, is tricky as it has length - // NOTE: Due to the conflict with Scriptaculous (http://dev.jquery.com/ticket/3248) - // We remove support for functions since jQuery 1.3 - //equals( jQuery.makeArray( function(){ return 1;} )[0](), 1, "Pass makeArray a function" ); + equals( jQuery.makeArray( function(){ return 1;} )[0](), 1, "Pass makeArray a function" ); //window, also has length equals( jQuery.makeArray(window)[0], window, "Pass makeArray the window" );