2022-04-05 07:09:27 +00:00
|
|
|
package testutil
|
|
|
|
|
|
|
|
import (
|
2022-04-29 04:20:27 +00:00
|
|
|
"testing"
|
|
|
|
|
2022-09-07 06:36:11 +00:00
|
|
|
"github.com/cerc-io/laconicd/testutil/network"
|
2022-04-05 07:09:27 +00:00
|
|
|
"github.com/stretchr/testify/suite"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestIntegrationTestSuite(t *testing.T) {
|
|
|
|
cfg := network.DefaultConfig()
|
2022-05-17 01:50:21 +00:00
|
|
|
cfg.NumValidators = 1
|
2022-04-05 07:09:27 +00:00
|
|
|
suite.Run(t, NewIntegrationTestSuite(cfg))
|
|
|
|
}
|