We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b76680b commit 38bd906Copy full SHA for 38bd906
test/core/run
@@ -45,8 +45,8 @@ function runTest(test, callback) {
45
child.on('exit', function (exitCode) {
46
clearTimeout(killTimeout);
47
48
- console.log(path.basename(test).yellow + ' exited with ' +
49
- ((exitCode) ? exitCode.toString().red : exitCode.toString().green));
+ console.log(' ' + ((exitCode) ? '✘'.red : '✔'.green) + ' ' +
+ path.basename(test) + (exitCode && ' (exit code: ' + exitCode + ')'));
50
results[test] = { exitCode: exitCode };
51
callback();
52
//
0 commit comments