From 67b48694469858dcc3d4ed74ebc4ac3a55b2d80d Mon Sep 17 00:00:00 2001 From: shivaken Date: Sun, 4 Sep 2011 02:47:41 +0900 Subject: [PATCH] With mongoose, expresso doesn't exit. Make expresso exit after serial-mode test execution. --- bin/expresso | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bin/expresso b/bin/expresso index b5a623b..20521dd 100755 --- a/bin/expresso +++ b/bin/expresso @@ -750,6 +750,8 @@ function runFiles(files) { (function next(){ if (files.length) { runFile(files.shift(), next); + } else { + process.exit(0); } })(); } else {