* move distribution cli tests to e2e tests * wip: add cli tests * wip: remove duplicate helpers.go file * fix something Co-authored-by: Julien Robert <julien@rbrt.fr> Co-authored-by: atheeshp <59333759+atheeshp@users.noreply.github.com> Co-authored-by: Marko <marbar3778@yahoo.com>
23 lines
374 B
Go
23 lines
374 B
Go
//go:build e2e
|
|
// +build e2e
|
|
|
|
package distribution
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/suite"
|
|
)
|
|
|
|
func TestIntegrationTestSuite(t *testing.T) {
|
|
suite.Run(t, new(IntegrationTestSuite))
|
|
}
|
|
|
|
func TestGRPCQueryTestSuite(t *testing.T) {
|
|
suite.Run(t, new(GRPCQueryTestSuite))
|
|
}
|
|
|
|
func TestWithdrawAllSuite(t *testing.T) {
|
|
suite.Run(t, new(WithdrawAllTestSuite))
|
|
}
|