cosmos-sdk/tests/e2e/auth/client/testutil/cli_test.go
Julien Robert dc95e33efe
refactor: replace app wiring yaml config by go (#12757)
* refactor: end-to-end tests should use simapp

* updates

* updates

* remove unecessary AppWiring
2022-07-29 16:39:44 -03:00

21 lines
456 B
Go

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