mirror of
https://github.com/planetmint/planetmint-go.git
synced 2025-06-12 09:06:47 +00:00
15 lines
241 B
Go
15 lines
241 B
Go
package asset
|
|
|
|
import (
|
|
"planetmint-go/testutil/network"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/suite"
|
|
)
|
|
|
|
func TestE2ETestSuite(t *testing.T) {
|
|
cfg := network.DefaultConfig()
|
|
cfg.NumValidators = 1
|
|
suite.Run(t, NewE2ETestSuite(cfg))
|
|
}
|