mirror of
https://github.com/jquery/jquery.git
synced 2025-01-10 18:24:24 +00:00
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
This commit is contained in:
parent
18139213ff
commit
98dd622a55
@ -619,6 +619,7 @@ QUnit[ window.console ? "test" : "skip" ]( "jQuery.Deferred.exceptionHook", func
|
|||||||
defer.resolve();
|
defer.resolve();
|
||||||
} );
|
} );
|
||||||
|
|
||||||
|
// Support: IE 9 only
|
||||||
// Test fails in IE9 but is skipped there because console is not active
|
// 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 ) {
|
QUnit[ window.console ? "test" : "skip" ]( "jQuery.Deferred.exceptionHook with stack hooks", function( assert ) {
|
||||||
|
|
||||||
|
@ -662,7 +662,10 @@ QUnit.test( "trim", function( assert ) {
|
|||||||
} );
|
} );
|
||||||
|
|
||||||
if ( includesModule( "deferred" ) ) {
|
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 );
|
assert.expect( 2 );
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user