From f3323901f907fd139fe22761590af5be8460a2f0 Mon Sep 17 00:00:00 2001 From: Rick Waldron Date: Mon, 15 Oct 2012 14:09:03 -0400 Subject: [PATCH] Adds missing expect() call in test/unit/support.js, fixes failing IE tests --- test/unit/support.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/unit/support.js b/test/unit/support.js index ac1d0e0ac..0ca0fa05d 100644 --- a/test/unit/support.js +++ b/test/unit/support.js @@ -247,6 +247,9 @@ testIframeWithCallback( "A background on the testElement does not cause IE8 to c if ( expected ) { test("Verify that the support tests resolve as expected per browser", function() { + + expect( jQuery(expected).size() ); + for ( var i in expected ) { if ( jQuery.ajax || i !== "ajax" && i !== "cors" ) { equal( jQuery.support[i], expected[i], "jQuery.support['" + i + "']: " + jQuery.support[i] + ", expected['" + i + "']: " + expected[i]); -- 2.39.5