sstephenson / bats

Bash Automated Testing System
MIT License
7.12k stars 519 forks source link

Support for a quiet / minimal output #151

Open ELLIOTTCABLE opened 8 years ago

ELLIOTTCABLE commented 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 "dot" reporter Mocha "min" reporter

Probably via a --quiet flag, or similar?

rockymadden commented 8 years ago

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