We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 219b0ff commit e109ebaCopy full SHA for e109eba
test/core/run
@@ -38,13 +38,13 @@ function runTest(test, callback) {
38
39
var killTimeout = setTimeout(function () {
40
child.kill();
41
- console.log(test.yellow + ' timed out'.red);
+ console.log(path.basename(test).yellow + ' timed out'.red);
42
}, testTimeout);
43
44
child.on('exit', function (exitCode) {
45
clearTimeout(killTimeout);
46
47
- console.log(test.yellow + ' exited with ' +
+ console.log(path.basename(test).yellow + ' exited with ' +
48
((exitCode) ? exitCode.toString().red : exitCode.toString().green));
49
results[test] = { exitCode: exitCode };
50
callback();
0 commit comments