cosmos-sdk/tests/e2e/bank/client/cli_test.go

20 lines
352 B
Go

//go:build e2e
// +build e2e
package client
import (
"testing"
"cosmossdk.io/simapp"
"github.com/cosmos/cosmos-sdk/testutil/network"
"github.com/stretchr/testify/suite"
)
func TestIntegrationTestSuite(t *testing.T) {
cfg := network.DefaultConfig(simapp.NewTestNetworkFixture)
cfg.NumValidators = 1
suite.Run(t, NewEndToEndTestSuite(cfg))
}