From 38bd906f2bc9322b156b92c47457bb7904f0d23a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Ma=C5=82ecki?= Date: Tue, 1 Nov 2011 01:56:42 +0100 Subject: [PATCH] [minor] Everybody loves Unicode Tick and X marks in test runner output. --- test/core/run | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/core/run b/test/core/run index fe156fd..7784c08 100755 --- a/test/core/run +++ b/test/core/run @@ -45,8 +45,8 @@ function runTest(test, callback) { child.on('exit', function (exitCode) { clearTimeout(killTimeout); - console.log(path.basename(test).yellow + ' exited with ' + - ((exitCode) ? exitCode.toString().red : exitCode.toString().green)); + console.log(' ' + ((exitCode) ? '✘'.red : '✔'.green) + ' ' + + path.basename(test) + (exitCode && ' (exit code: ' + exitCode + ')')); results[test] = { exitCode: exitCode }; callback(); //