planetmint-go/lib/tests/e2e/cli_test.go
Jürgen Eckel 324bd43bdf
renamed test suites to have a clear naming structure
Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com>
2024-03-06 08:50:58 +01:00

17 lines
283 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.DefaultConfig()
cfg.NumValidators = 1
suite.Run(t, NewE2ETestSuite(cfg))
}