Jürgen Eckel 8f6630b2f6
increased the validator number to 3 for all e2e tests
Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com>
2024-03-05 10:04:42 +01:00

17 lines
284 B
Go

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