franela/goblin

Is it expected, that Goblin doesn't output anything if all tests pass?

Dan6erbond opened this issue · 2 comments

I couldn't find anything about this in the README.md, but whenever I run my tests which all pass, Goblin actually won't output anything and I only see the standard go test output. Is this expected?

are you running go test -v?

if you run go test multiple times, take into account that go caches the tests if they haven't changed and does not re-executes them. So it's very likely that you're hitting this; try go clean -testcache && go test -v ./...