From 1a4e6e98fdeb63f967ea5382184f3b99722d3d63 Mon Sep 17 00:00:00 2001 From: Mike Sherov Date: Sun, 14 Apr 2013 18:47:29 -0400 Subject: [PATCH] Datepicker Tests: Fix hanging IE tests resulting from asynchronous blur(cherry picked from commit 71a332e8b83a1657521e04388f5592997e81bbcc) --- tests/unit/datepicker/datepicker_core.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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() {