testing.md
April 13, 2022 ยท View on GitHub
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 ./...