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); }; };