I noticed that go test seems to print to stdout after tests have finished.
go test
I'm not sure if this is go test's issue, or because I am using ginkgo as well.
Does anyone know how to make it print output as the tests run?
Use the verbose flag on go test to see output of log or print statements as tests are run.
go test -v
Use the verbose flag on go test to see output of log or print statements as tests are run.