deno
deno copied to clipboard
fix(test): Added empty line between test modules
When running deno test
, in my opinion, it's quite hard to distinguish different test modules (files) from each other, because the log lines being printed for the individual test modules look almost the same as the ones for the actual tests:
In my opinion (this might be subjective, but I don't think it is), bun test
(offered by Bun) does a much better job at making the log lines easy to parse for human eyes:
As a small incremental step towards deno test
providing a more clear logging output, I propose adding an empty line between the test modules, like it is also the case for bun test
and other test runners.