Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 354 Bytes

TESTING.md

File metadata and controls

19 lines (13 loc) · 354 Bytes

Run tests

To run tests simply run

go test ./... -coverprofile=coverage.out

To deep dive into test coverage, run the following command to see the result in your terminal

go tool cover -func=coverage.out

or the following to see the result in your browser

go tool cover -html=coverage.out