forked from cerc-io/laconicd
18 lines
328 B
Go
18 lines
328 B
Go
|
package bond
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/cosmos/cosmos-sdk/testutil/network"
|
||
|
"github.com/stretchr/testify/suite"
|
||
|
|
||
|
"git.vdb.to/cerc-io/laconic2d/tests/e2e"
|
||
|
)
|
||
|
|
||
|
func TestBondE2ETestSuite(t *testing.T) {
|
||
|
cfg := network.DefaultConfig(e2e.NewTestNetworkFixture)
|
||
|
cfg.NumValidators = 1
|
||
|
|
||
|
suite.Run(t, NewE2ETestSuite(cfg))
|
||
|
}
|