Skip to content

Latest commit

 

History

History
11 lines (11 loc) · 280 Bytes

delve.md

File metadata and controls

11 lines (11 loc) · 280 Bytes
brew install go-delve/delve/delve
 # change directory into the package you want to debug
cd ~/go/src/github.com/blabbertabber/speechbroker/httphandler
dlv test # if debugging ginkgo
  help
   # set the breakpoint to debug
  break httphandler_test.go:144
  continue
  step