mirror of
https://github.com/planetmint/planetmint-go.git
synced 2025-11-24 14:35:47 +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
351 B
Go
18 lines
351 B
Go
package distribution
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/planetmint/planetmint-go/testutil/network"
|
|
|
|
"github.com/stretchr/testify/suite"
|
|
)
|
|
|
|
func TestAssetDistributionE2EDaoTestSuite(t *testing.T) {
|
|
time.Sleep(2 * time.Second)
|
|
cfg := network.LoaderDefaultConfig()
|
|
cfg.NumValidators = 3
|
|
suite.Run(t, NewAssetDistributionE2ETestSuite(cfg))
|
|
}
|