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
289 B
Go

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