mirror of
https://github.com/planetmint/planetmint-go.git
synced 2025-11-24 22:45:45 +00:00
* added 2 seconds wait time to avoid errors of still blocked ports/bindings (network) * removed parallel flag from test/e2e/asset Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com>
18 lines
323 B
Go
18 lines
323 B
Go
package pop
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/planetmint/planetmint-go/testutil/network"
|
|
|
|
"github.com/stretchr/testify/suite"
|
|
)
|
|
|
|
func TestPopE2EDaoTestSuite(t *testing.T) {
|
|
time.Sleep(2 * time.Second)
|
|
cfg := network.LoaderDefaultConfig()
|
|
cfg.NumValidators = 3
|
|
suite.Run(t, NewPopSelectionE2ETestSuite(cfg))
|
|
}
|