From 841f22f0bb132c23f60d1dd63bb127c1ba5703bf Mon Sep 17 00:00:00 2001 From: Jared Allard Date: Wed, 24 Feb 2016 13:22:21 -0800 Subject: [PATCH] tests: fix incorrect write type for express-test, exit process --- test/express-test/bin/www | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/express-test/bin/www b/test/express-test/bin/www index 6924086..da5b3b5 100755 --- a/test/express-test/bin/www +++ b/test/express-test/bin/www @@ -89,4 +89,5 @@ function onListening() { debug('Listening on ' + bind); } -process.stdout.write(true); +process.stdout.write('true'); +process.exit(0);