diff options
author | Mike Sherov <mike.sherov@gmail.com> | 2013-04-14 18:47:29 -0400 |
---|---|---|
committer | Mike Sherov <mike.sherov@gmail.com> | 2013-04-14 18:47:29 -0400 |
commit | 71a332e8b83a1657521e04388f5592997e81bbcc (patch) | |
tree | 6e94abdc88bf4f3b82cd9289de53399b3132296e | |
parent | b75e4f7d27eff1c5a40fe101cb34a0f806efaede (diff) | |
download | jquery-ui-71a332e8b83a1657521e04388f5592997e81bbcc.tar.gz jquery-ui-71a332e8b83a1657521e04388f5592997e81bbcc.zip |
Datepicker Tests: Fix hanging IE tests resulting from asynchronous blur
-rw-r--r-- | tests/unit/datepicker/datepicker_core.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/unit/datepicker/datepicker_core.js b/tests/unit/datepicker/datepicker_core.js index 5914db269..0bc5723ec 100644 --- a/tests/unit/datepicker/datepicker_core.js +++ b/tests/unit/datepicker/datepicker_core.js @@ -297,7 +297,10 @@ asyncTest( "customStructure", function() { }); } - step1(); + // TODO: figure out why this setTimeout is needed in IE, + // it only is necessary when the previous baseStructure tests runs first + // Support: IE + setTimeout( step1 ); }); test("keystrokes", function() { |