diff options
author | Scott González <scott.gonzalez@gmail.com> | 2013-12-03 11:27:20 -0500 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2013-12-03 11:27:41 -0500 |
commit | acd2e1391f4d5f4cb381f0733d371ca03be3d5e8 (patch) | |
tree | f044118c30c51fb222f9054a6fbae978faf56225 | |
parent | 4992fc902eae207737be33e5b937980b4765bbf7 (diff) | |
download | jquery-ui-acd2e1391f4d5f4cb381f0733d371ca03be3d5e8.tar.gz jquery-ui-acd2e1391f4d5f4cb381f0733d371ca03be3d5e8.zip |
Datepicker test: Attempt to work around an issue in IE9 in TestSwarm.
-rw-r--r-- | tests/unit/datepicker/datepicker_options.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit/datepicker/datepicker_options.js b/tests/unit/datepicker/datepicker_options.js index b5dd4cac2..feedfba2d 100644 --- a/tests/unit/datepicker/datepicker_options.js +++ b/tests/unit/datepicker/datepicker_options.js @@ -89,7 +89,7 @@ test("change", function() { asyncTest( "invocation", function() { var button, image, - isOldIE = $.ui.ie && ( !document.documentMode || document.documentMode < 9 ), + isOldIE = $.ui.ie && ( !document.documentMode || document.documentMode < 10 ), body = $( "body" ); expect( isOldIE ? 25 : 29 ); @@ -196,7 +196,7 @@ asyncTest( "invocation", function() { image = button.children( "img" ); ok( image.length === 1, "Both - button image present" ); - // TODO: occasionally this test flakily fails to focus in IE8 in browserstack + // TODO: This test occasionally fails to focus in IE in TestSwarm if ( !isOldIE ) { TestHelpers.datepicker.onFocus( inp, function() { ok( dp.is( ":visible" ), "Both - rendered on focus" ); |