[minor] Change test runner output order

This commit is contained in:
Maciej Małecki 2011-11-01 00:56:25 +01:00
parent 68cebbe0e7
commit b76680b045

View File

@ -75,8 +75,8 @@ async.forEachSeries(tests, runTest, function () {
} }
console.log('\nSummary:'); console.log('\nSummary:');
console.log((' ' + failed.length + '\tfailed tests').red);
console.log((' ' + ok.length + '\tpassed tests').green); console.log((' ' + ok.length + '\tpassed tests').green);
console.log((' ' + failed.length + '\tfailed tests').red);
}); });
// vim:filetype=javascript // vim:filetype=javascript