@ -23,6 +23,8 @@ test-int:
go test $(FLAGS) ./cmd/...
.PHONY: test-int
## Coverage See also -covermode=count and -covermode=atomic
cover-html: test-cover
go tool cover -html=$(COVER_PROFILE)
.PHONY:cover-html
@ -45,5 +45,4 @@ func TestPing(t *testing.T) {
body = bytes.TrimSpace(body)
assert.Equal(t, string(body), "OK")
}