* wip: move nft cli tests to e2e tests * wip: add cli tests using Tendermint Mock * cleanup genutil test file * remove unncessary test cases * address review comments Co-authored-by: Julien Robert <julien@rbrt.fr> Co-authored-by: Marko <marbar3778@yahoo.com> Co-authored-by: Aleksandr Bezobchuk <alexanderbez@users.noreply.github.com>
21 lines
353 B
Go
21 lines
353 B
Go
//go:build e2e
|
|
// +build e2e
|
|
|
|
package nft
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/suite"
|
|
|
|
"cosmossdk.io/simapp"
|
|
|
|
"github.com/cosmos/cosmos-sdk/testutil/network"
|
|
)
|
|
|
|
func TestIntegrationTestSuite(t *testing.T) {
|
|
cfg := network.DefaultConfig(simapp.NewTestNetworkFixture)
|
|
cfg.NumValidators = 1
|
|
suite.Run(t, NewIntegrationTestSuite(cfg))
|
|
}
|