Skip to content

Commit 98dd622

Browse files
committed
Tests: Skip jQuery.Deferred.exceptionHook tests in IE 9
The non-deprecated test was already skipped there, the deprecated one is now skipped as well. Ref gh-5212
1 parent 1813921 commit 98dd622

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

test/unit/deferred.js

+1
Original file line numberDiff line numberDiff line change
@@ -619,6 +619,7 @@ QUnit[ window.console ? "test" : "skip" ]( "jQuery.Deferred.exceptionHook", func
619619
defer.resolve();
620620
} );
621621

622+
// Support: IE 9 only
622623
// Test fails in IE9 but is skipped there because console is not active
623624
QUnit[ window.console ? "test" : "skip" ]( "jQuery.Deferred.exceptionHook with stack hooks", function( assert ) {
624625

test/unit/deprecated.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -662,7 +662,10 @@ QUnit.test( "trim", function( assert ) {
662662
} );
663663

664664
if ( includesModule( "deferred" ) ) {
665-
QUnit.test( "jQuery.Deferred.exceptionHook with stack hooks", function( assert ) {
665+
666+
// Support: IE 9 only
667+
// Test fails in IE9 but is skipped there because console is not active
668+
QUnit[ window.console ? "test" : "skip" ]( "jQuery.Deferred.exceptionHook with stack hooks", function( assert ) {
666669

667670
assert.expect( 2 );
668671

0 commit comments

Comments
 (0)