From 909951d9759a9e544f636bdb1632dd1eae3391ad Mon Sep 17 00:00:00 2001 From: Brendan Dahl Date: Thu, 19 Apr 2012 14:19:08 -0700 Subject: [PATCH] Allow time to finish requests. --- test/unit/testreporter.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/unit/testreporter.js b/test/unit/testreporter.js index 1e43db1fa..3045faabe 100644 --- a/test/unit/testreporter.js +++ b/test/unit/testreporter.js @@ -66,6 +66,7 @@ var TestReporter = function(browser, appPath) { this.reportSuiteResults = function(suite) { }; this.reportRunnerResults = function(runner) { - sendQuitRequest(); + // Give the test.py some time process any queued up requests + setTimeout(sendQuitRequest, 500); }; };