Jürgen Eckel e1d8c1925f
* seperated dao test suites (faster output on the CI)
* 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>
2024-03-08 11:39:30 +01:00

18 lines
343 B
Go

package restrictedMsgs
import (
"testing"
"time"
"github.com/planetmint/planetmint-go/testutil/network"
"github.com/stretchr/testify/suite"
)
func TestRestrictedMsgsE2EDaoTestSuite(t *testing.T) {
time.Sleep(2 * time.Second)
cfg := network.LoaderDefaultConfig()
cfg.NumValidators = 3
suite.Run(t, NewRestrictedMsgsE2ESuite(cfg))
}