Skip to content

Commit 71a332e

Browse files
committed
Datepicker Tests: Fix hanging IE tests resulting from asynchronous blur
1 parent b75e4f7 commit 71a332e

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tests/unit/datepicker/datepicker_core.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,10 @@ asyncTest( "customStructure", function() {
297297
});
298298
}
299299

300-
step1();
300+
// TODO: figure out why this setTimeout is needed in IE,
301+
// it only is necessary when the previous baseStructure tests runs first
302+
// Support: IE
303+
setTimeout( step1 );
301304
});
302305

303306
test("keystrokes", function() {

0 commit comments

Comments
 (0)