cosmos-sdk/x/feegrant/client/testutil/cli_test.go

19 lines
312 B
Go

//go:build norace
// +build norace
package testutil
import (
"testing"
"github.com/cosmos/cosmos-sdk/testutil/network"
"github.com/stretchr/testify/suite"
)
func TestIntegrationTestSuite(t *testing.T) {
cfg := network.DefaultConfig()
cfg.NumValidators = 3
suite.Run(t, NewIntegrationTestSuite(cfg))
}