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
go test ./... does not succeed or at least after waiting 10 minutes there was no output.
I understand make test performs some prep work for integration test but an often cited Go golden rule of testing is that go test ./... should run unit tests unencumbered right off the bat.
Tests create files in the root directory. We should move them to a test output directory.
make test itself fails, need to dig deeper as to why this is the case.
go test ./...does not succeed or at least after waiting 10 minutes there was no output.I understand
make testperforms some prep work for integration test but an often cited Go golden rule of testing is thatgo test ./...should run unit tests unencumbered right off the bat.Tests create files in the root directory. We should move them to a test output directory.
make testitself fails, need to dig deeper as to why this is the case.