franela/goblin

No story output when testing sub-packages.

thedodd opened this issue · 2 comments

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

@thedodd in that case you need to run go test -v

@marcosnils awesome. That did the trick. Thanks for the very quick response.