Golang – Debug a unit test manually
I ran into a tricky issue where all unit tests passed when executed from the IDE, but one test consistently failed when run from the command line. I won’t go into the details of the root cause (it was related to how the IDE handles the /dev/tty device), but I will provide instructions on how to manually debug a failing test.
…