Allow time to finish requests.

This commit is contained in:
Brendan Dahl 2012-04-19 14:19:08 -07:00
parent eea1d9086b
commit 909951d975

View File

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