Jürgen Eckel 453a1059df
* removed parallel-testing from e2e machine test suite
* improved test suite logging

Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com>
2024-03-06 09:09:50 +01:00

16 lines
279 B
Go

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