19 lines
312 B
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 = 2
|
|
suite.Run(t, NewIntegrationTestSuite(cfg))
|
|
}
|