2022-04-05 07:09:27 +00:00
|
|
|
package testutil
|
|
|
|
|
|
|
|
import (
|
2022-04-29 04:20:27 +00:00
|
|
|
"testing"
|
|
|
|
|
2022-04-05 07:09:27 +00:00
|
|
|
"github.com/stretchr/testify/suite"
|
|
|
|
"github.com/tharsis/ethermint/testutil/network"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestIntegrationTestSuite(t *testing.T) {
|
|
|
|
cfg := network.DefaultConfig()
|
2022-04-29 04:20:27 +00:00
|
|
|
cfg.NumValidators = 2
|
2022-04-05 07:09:27 +00:00
|
|
|
suite.Run(t, NewIntegrationTestSuite(cfg))
|
|
|
|
}
|