]> source.dussan.org Git - jquery.git/commitdiff
Tests: Skip jQuery.Deferred.exceptionHook tests in IE 9
authorMichał Gołębiowski-Owczarek <m.goleb@gmail.com>
Wed, 15 Mar 2023 11:21:35 +0000 (12:21 +0100)
committerMichał Gołębiowski-Owczarek <m.goleb@gmail.com>
Wed, 15 Mar 2023 11:21:54 +0000 (12:21 +0100)
The non-deprecated test was already skipped there, the deprecated
one is now skipped as well.

Ref gh-5212

test/unit/deferred.js
test/unit/deprecated.js

index 9a8d4152f4b5d6b40a03b84343fe68545a3991fd..f40e0e8e76b6675004d943f7c3689a9602a0e329 100644 (file)
@@ -619,6 +619,7 @@ QUnit[ window.console ? "test" : "skip" ]( "jQuery.Deferred.exceptionHook", func
        defer.resolve();
 } );
 
+// Support: IE 9 only
 // Test fails in IE9 but is skipped there because console is not active
 QUnit[ window.console ? "test" : "skip" ]( "jQuery.Deferred.exceptionHook with stack hooks", function( assert ) {
 
index 4d8d00f009852ca8bfc53a946b702dafe223b72a..e88a7c5cf492cc2b91ed43b42167f839ee660bed 100644 (file)
@@ -662,7 +662,10 @@ QUnit.test( "trim", function( assert ) {
 } );
 
 if ( includesModule( "deferred" ) ) {
-       QUnit.test( "jQuery.Deferred.exceptionHook with stack hooks", function( assert ) {
+
+       // Support: IE 9 only
+       // Test fails in IE9 but is skipped there because console is not active
+       QUnit[ window.console ? "test" : "skip" ]( "jQuery.Deferred.exceptionHook with stack hooks", function( assert ) {
 
                assert.expect( 2 );