cosmos-sdk/tests/e2e/feegrant/cli_test.go

20 lines
357 B
Go

//go:build e2e
// +build e2e
package feegrant
import (
"testing"
"cosmossdk.io/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 = 3
suite.Run(t, NewIntegrationTestSuite(cfg))
}