* progress * simapp out * add files * Update x/feegrant/simulation/operations_test.go Co-authored-by: atheeshp <59333759+atheeshp@users.noreply.github.com> * updates comments * implement feedback * apply suggestions Co-authored-by: Facundo Medica <14063057+facundomedica@users.noreply.github.com>
22 lines
464 B
Go
22 lines
464 B
Go
//go:build norace
|
|
// +build norace
|
|
|
|
package testutil
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/cosmos/cosmos-sdk/testutil/network"
|
|
"github.com/cosmos/cosmos-sdk/x/feegrant/testutil"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
"github.com/stretchr/testify/suite"
|
|
)
|
|
|
|
func TestIntegrationTestSuite(t *testing.T) {
|
|
cfg, err := network.DefaultConfigWithAppConfig(testutil.AppConfig)
|
|
require.NoError(t, err)
|
|
cfg.NumValidators = 3
|
|
suite.Run(t, NewIntegrationTestSuite(cfg))
|
|
}
|