Open ELLIOTTCABLE opened 8 years ago
I'd love something like mocha's ‘Dot Matrix’ or ‘Min’ reporters: either a single dot for each passing test, or no output for tests at all, but just the summary lines at the end:
mocha
Probably via a --quiet flag, or similar?
--quiet
This can be accomplished via TAP, which bats supports via the --tap option. You can then use whatever reporter you wish: https://github.com/sindresorhus/awesome-tap
bats
--tap
I'd love something like
mocha
's ‘Dot Matrix’ or ‘Min’ reporters: either a single dot for each passing test, or no output for tests at all, but just the summary lines at the end:Probably via a
--quiet
flag, or similar?