We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
goconvey
Iike below, this is code intrusion when I stub functions in my project. Is there any way to exec web UI command goconvey gracefully?
//go:noinline func GetResult(d Demo) string { if d.GetMsg() == "store" { return "success" } return "failure" }
The official way:
go test -gcflags=all=-l
The text was updated successfully, but these errors were encountered:
I solved the problem by adding the following code, then rebuilding, and then replacing the goconvey.exe file in the bin directory.
// web/server/system/shell.go runWithCoverage arguments = append(arguments, "-gcflags=all=-l")
Sorry, something went wrong.
I edited the source file and ran go install github.com/smartystreets/goconvey. It didn't work for me.
go install github.com/smartystreets/goconvey
No branches or pull requests
Iike below, this is code intrusion when I stub functions in my project. Is there any way to exec web UI command
goconvey
gracefully?The official way:
go test -gcflags=all=-l
The text was updated successfully, but these errors were encountered: