* refactor: end-to-end tests should use simapp * updates * updates * remove unecessary AppWiring
21 lines
460 B
Go
21 lines
460 B
Go
//go:build e2e
|
|
// +build e2e
|
|
|
|
package testutil
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/suite"
|
|
|
|
"github.com/cosmos/cosmos-sdk/simapp"
|
|
"github.com/cosmos/cosmos-sdk/testutil/network"
|
|
clienttestutil "github.com/cosmos/cosmos-sdk/x/params/client/testutil"
|
|
)
|
|
|
|
func TestIntegrationTestSuite(t *testing.T) {
|
|
cfg := network.DefaultConfig(simapp.NewTestNetworkFixture)
|
|
cfg.NumValidators = 1
|
|
suite.Run(t, clienttestutil.NewIntegrationTestSuite(cfg))
|
|
}
|