diff options
author | Rick Waldron <waldron.rick@gmail.com> | 2012-10-15 14:09:03 -0400 |
---|---|---|
committer | Rick Waldron <waldron.rick@gmail.com> | 2012-10-15 14:09:03 -0400 |
commit | f3323901f907fd139fe22761590af5be8460a2f0 (patch) | |
tree | ea6006277a91122d771490330146970af763049e | |
parent | 8a4dc3657e7da482a12b51cba2c6806cc36d9919 (diff) | |
download | jquery-f3323901f907fd139fe22761590af5be8460a2f0.tar.gz jquery-f3323901f907fd139fe22761590af5be8460a2f0.zip |
Adds missing expect() call in test/unit/support.js, fixes failing IE tests
-rw-r--r-- | test/unit/support.js | 3 |
1 files changed, 3 insertions, 0 deletions
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]); |