Skip to content

Latest commit

 

History

History
11 lines (10 loc) · 266 Bytes

testing.md

File metadata and controls

11 lines (10 loc) · 266 Bytes

Testing

In order to start tests, use standard go test command:

go test ./...

If you want to launch only the fast tests, consider using -short flag.
In order to start end-to-end test you should add e2e tag:

go test -tags=e2e ./...