planetmint-go/tests/e2e/dao/pop/cli_test.go
Jürgen Eckel 1818460851
renamed a bunch of things to please the linters
Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com>
2024-03-08 11:50:38 +01:00

18 lines
320 B
Go

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))
}