cosmos-sdk/tests/e2e/auth/cli_test.go
2022-10-18 09:13:21 +02:00

21 lines
354 B
Go

//go:build e2e
// +build e2e
package auth
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 = 2
suite.Run(t, NewIntegrationTestSuite(cfg))
}