forked from cerc-io/laconicd-deprecated
17 lines
277 B
Go
17 lines
277 B
Go
|
package testutil
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/suite"
|
||
|
|
||
|
"github.com/tharsis/ethermint/testutil/network"
|
||
|
)
|
||
|
|
||
|
func TestIntegrationTestSuite(t *testing.T) {
|
||
|
cfg := network.DefaultConfig()
|
||
|
cfg.NumValidators = 1
|
||
|
|
||
|
suite.Run(t, NewIntegrationTestSuite(cfg))
|
||
|
}
|