mirror of
https://github.com/planetmint/planetmint-go.git
synced 2025-03-30 15:08:28 +00:00
17 lines
289 B
Go
17 lines
289 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.LoaderDefaultConfig()
|
|
cfg.NumValidators = 1
|
|
suite.Run(t, NewE2ETestSuite(cfg))
|
|
}
|