From e611289a79d959c1185d002c29093e9809b6dec8 Mon Sep 17 00:00:00 2001 From: Ariel Flesler Date: Tue, 16 Dec 2008 00:05:04 +0000 Subject: [PATCH] testrunner: re adding the test for a function within isFunction. --- test/unit/core.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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" ); -- 1.7.10.4