2024-03-04 11:16:09 +00:00
|
|
|
package auction
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/suite"
|
|
|
|
|
2024-04-01 09:57:26 +00:00
|
|
|
"git.vdb.to/cerc-io/laconicd/tests/e2e"
|
|
|
|
"git.vdb.to/cerc-io/laconicd/testutil/network"
|
2024-03-04 11:16:09 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestAuctionE2ETestSuite(t *testing.T) {
|
|
|
|
cfg := network.DefaultConfig(e2e.NewTestNetworkFixture)
|
|
|
|
cfg.NumValidators = 1
|
|
|
|
|
|
|
|
suite.Run(t, NewE2ETestSuite(cfg))
|
|
|
|
}
|