Function: go-ts-mode-test-this-package
go-ts-mode-test-this-package is an interactive and byte-compiled
function defined in go-ts-mode.el.gz.
Signature
(go-ts-mode-test-this-package)
Documentation
Run all the unit tests under the current package.
Probably introduced at or before Emacs version 31.1.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/go-ts-mode.el.gz
(defun go-ts-mode-test-this-package ()
"Run all the unit tests under the current package."
(interactive)
(compile (format "go test -v %s %s %s"
(go-ts-mode--get-build-tags-flag)
default-directory
(go-ts-mode--get-test-flags))))