Created
October 17, 2018 23:20
-
-
Save Mackenzie-Frey/246e5280451cfac1b30f594d8cce2268 to your computer and use it in GitHub Desktop.
How to change Minitest to Output Emojis
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Here is a way to change have your minitest to output emojis. | |
Type in terminal: | |
gem install minitest-emoji | |
At the top of your test file type: | |
require 'minitest/emoji' | |
Now your normal S/F/./E will be changed to the following emojis: | |
Success = 💚 | Failure = 💩 | Skip = 😳 | Error = 🔥 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment