Skip to content

Commit acd2e13

Browse files
committed
Datepicker test: Attempt to work around an issue in IE9 in TestSwarm.
1 parent 4992fc9 commit acd2e13

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/unit/datepicker/datepicker_options.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ test("change", function() {
8989

9090
asyncTest( "invocation", function() {
9191
var button, image,
92-
isOldIE = $.ui.ie && ( !document.documentMode || document.documentMode < 9 ),
92+
isOldIE = $.ui.ie && ( !document.documentMode || document.documentMode < 10 ),
9393
body = $( "body" );
9494

9595
expect( isOldIE ? 25 : 29 );
@@ -196,7 +196,7 @@ asyncTest( "invocation", function() {
196196
image = button.children( "img" );
197197
ok( image.length === 1, "Both - button image present" );
198198

199-
// TODO: occasionally this test flakily fails to focus in IE8 in browserstack
199+
// TODO: This test occasionally fails to focus in IE in TestSwarm
200200
if ( !isOldIE ) {
201201
TestHelpers.datepicker.onFocus( inp, function() {
202202
ok( dp.is( ":visible" ), "Both - rendered on focus" );

0 commit comments

Comments
 (0)