2024-03-01 06:22:37 +00:00
|
|
|
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)
|
2024-03-01 09:26:08 +00:00
|
|
|
cfg.NumValidators = 1
|
|
|
|
|
2024-03-01 06:22:37 +00:00
|
|
|
suite.Run(t, NewE2ETestSuite(cfg))
|
|
|
|
}
|