mirror of
https://github.com/planetmint/planetmint-go.git
synced 2025-11-25 23:15:45 +00:00
16 lines
279 B
Go
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))
|
|
}
|