diff --git a/test/page/lib/jasmine-2.3.4/boot.js b/test/page/lib/jasmine-2.3.4/boot.js index 63fdd1f..324798c 100644 --- a/test/page/lib/jasmine-2.3.4/boot.js +++ b/test/page/lib/jasmine-2.3.4/boot.js @@ -105,11 +105,13 @@ var currentWindowOnload = window.onload; window.onload = function() { - if (currentWindowOnload) { - currentWindowOnload(); - } - htmlReporter.initialize(); - env.execute(); + setTimeout(function() { + if (currentWindowOnload) { + currentWindowOnload(); + } + htmlReporter.initialize(); + env.execute(); + }, 1000); }; /**