cosmos-sdk/tests/e2e/auth/cli_test.go
2025-11-03 11:30:03 -05:00

20 lines
324 B
Go

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