17 lines
326 B
Go
17 lines
326 B
Go
package auction
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/cosmos/cosmos-sdk/testutil/network"
|
|
"github.com/stretchr/testify/suite"
|
|
|
|
"git.vdb.to/cerc-io/laconic2d/tests/e2e"
|
|
)
|
|
|
|
func TestE2ETestSuite(t *testing.T) {
|
|
cfg := network.DefaultConfig(e2e.NewTestNetworkFixture)
|
|
cfg.NumValidators = 2
|
|
suite.Run(t, NewE2ETestSuite(cfg))
|
|
}
|