planetmint-go/lib/tests/e2e/cli_test.go
Julian Strobl 6f3bfb9700
chore(lib): update planetmint-go to v0.12.3
Signed-off-by: Julian Strobl <jmastr@mailbox.org>
2024-11-13 09:02:22 +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))
}