planetmint-go/lib/tests/e2e/cli_test.go
Julian Strobl 602ac7a601
refactor(lib): use planetmint-go v0.11.1
Signed-off-by: Julian Strobl <jmastr@mailbox.org>
2024-11-25 17:45:33 +01:00

17 lines
289 B
Go

package machine
import (
"testing"
"github.com/planetmint/planetmint-go/testutil/network"
"github.com/stretchr/testify/suite"
)
func TestE2ELibTestSuite(t *testing.T) {
t.Parallel()
cfg := network.LoaderDefaultConfig()
cfg.NumValidators = 1
suite.Run(t, NewE2ETestSuite(cfg))
}