In my rails app I am using:
- guard
- guard-minitest
- growl
when a test runs in the background:
I get this from Growl:
Great to know that at least one test failed. Any way to add that summary that reports the number i.e. 2 failures etc.?
In my rails app I am using:
when a test runs in the background:
I get this from Growl:
Great to know that at least one test failed. Any way to add that summary that reports the number i.e. 2 failures etc.?
Copyright © 2021 Jogjafile Inc.


You can change the behavior by modifying Guard::Minitest::Notifier.notify:
The title 'Minitest results' is most likely just a cludged placeholder. This example sets it to the same output as you get in the CLI but you can really do whatever you want here.
You would preferably do this by forking the gem and setting your gemfile to pull from your fork.