smartystreets / goconvey

Go testing in the browser. Integrates with `go test`. Write behavioral tests in Go.
http://smartystreets.github.io/goconvey/
Other
8.23k stars 554 forks source link

Cannot find goconvey in $GOPATH/bin/ #670

Closed FosuLiang closed 1 year ago

FosuLiang commented 1 year ago

Why I can not find goconvey in $GOPATH/bin/? I do really download gonconvey by command: go get github.com/smartystreets/goconvey package is download successfully but without goconvey in $GOPATH/bin/

grafov commented 1 year ago

The go get behaviour was changed in the latest Go versions. Try this:

go install github.com/smartystreets/goconvey@latest
FosuLiang commented 1 year ago

Thx a lot! It's solved.