You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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?
The text was updated successfully, but these errors were encountered:
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 ./...
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?The text was updated successfully, but these errors were encountered: