franela / goblin

Minimal and Beautiful Go testing framework
MIT License
883 stars 79 forks source link

No story output when testing sub-packages. #51

Closed thedodd closed 8 years ago

thedodd commented 8 years ago

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
marcosnils commented 8 years ago

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

thedodd commented 8 years ago

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