Improve tests display for rustdoc-js-std tester

This commit is contained in:
Guillaume Gomez 2020-03-21 13:49:48 +01:00
parent 2b4feba18f
commit c88be65785

View File

@ -65,6 +65,7 @@ function main(argv) {
var errors = 0;
fs.readdirSync(test_folder).forEach(function(file) {
process.stdout.write('Checking "' + file + '" ... ');
errors += tools.runChecks(path.join(test_folder, file), loaded, index);
});
return errors > 0 ? 1 : 0;