mirror of
https://github.com/planetmint/planetmint-go.git
synced 2025-11-23 22:15:47 +00:00
adjusted to the linter requirements Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com>
18 lines
312 B
Go
18 lines
312 B
Go
package der
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/planetmint/planetmint-go/testutil/network"
|
|
|
|
"github.com/stretchr/testify/suite"
|
|
)
|
|
|
|
func TestE2EMachineTestSuite(t *testing.T) {
|
|
time.Sleep(2 * time.Second)
|
|
cfg := network.LoaderDefaultConfig()
|
|
cfg.NumValidators = 3
|
|
suite.Run(t, NewE2ETestSuite(cfg))
|
|
}
|