package pop import ( "testing" "time" "github.com/planetmint/planetmint-go/testutil/network" "github.com/stretchr/testify/suite" ) func TestPopE2EDaoTestSuite(t *testing.T) { time.Sleep(2 * time.Second) cfg := network.LoaderDefaultConfig() cfg.NumValidators = 3 suite.Run(t, NewSelectionE2ETestSuite(cfg)) }