diff options
author | Scott González <scott.gonzalez@gmail.com> | 2013-12-03 11:38:17 -0500 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2013-12-03 11:38:17 -0500 |
commit | 72f29a111ac483a2c146fca2f18b52d3859bad64 (patch) | |
tree | 8850a7f3e8857dd8971af4399d83c86e4f69faf6 | |
parent | acd2e1391f4d5f4cb381f0733d371ca03be3d5e8 (diff) | |
download | jquery-ui-72f29a111ac483a2c146fca2f18b52d3859bad64.tar.gz jquery-ui-72f29a111ac483a2c146fca2f18b52d3859bad64.zip |
Datepicker test: Attempt to work around an intermittent issue in IE when run through TestSwarm.
-rw-r--r-- | tests/unit/datepicker/datepicker_core.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/unit/datepicker/datepicker_core.js b/tests/unit/datepicker/datepicker_core.js index 0bc5723ec..65b07e2f6 100644 --- a/tests/unit/datepicker/datepicker_core.js +++ b/tests/unit/datepicker/datepicker_core.js @@ -4,7 +4,11 @@ (function($) { -module("datepicker: core"); +module( "datepicker: core", { + setup: function() { + $( "body" ).focus(); + } +}); TestHelpers.testJshint( "datepicker" ); |