When executing go test against multiple packages, I am not getting any output other than the standard go test output. None of the Describe & It descriptions are being output to the terminal.
$ go test github.com/thedodd/<pkg> github.com/thedodd/<pkg>/lib
? github.com/thedodd/<pkg> [no test files]
ok github.com/thedodd/<pkg>/lib 0.195s
When executing
go test
against multiple packages, I am not getting any output other than the standardgo test
output. None of theDescribe
&It
descriptions are being output to the terminal.