* retain x/bank integration tests * Move bank end to end tests * refactor: move bank e2e tests and move common code to testutil/cli/cmd.go * refactor x/bank integration tests to remove simapp dep
20 lines
368 B
Go
20 lines
368 B
Go
//go:build e2e
|
|
// +build e2e
|
|
|
|
package client
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/cosmos/cosmos-sdk/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))
|
|
}
|