mirror of
https://github.com/planetmint/planetmint-go.git
synced 2025-03-30 15:08:28 +00:00

* added TermintionWaitGroup * added mutex to lib/tx * removed machine attestation thread (to comply with testing-race conditions becoming apparent on the CI) * renamed test suites to have a clear naming structure * removed parallel-testing from e2e machine test suite * improved test suite logging * removed parallel tests of machine_nft_tests - this caused data races due to the mock overwrites * reduced error check to "out of gas" due to multi-threading and locking delays that result in different gas consumptions * Added waiting blocks to pass the CI Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com>
17 lines
283 B
Go
17 lines
283 B
Go
package machine
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/planetmint/planetmint-go/testutil/network"
|
|
|
|
"github.com/stretchr/testify/suite"
|
|
)
|
|
|
|
func TestE2ELibTestSuite(t *testing.T) {
|
|
t.Parallel()
|
|
cfg := network.DefaultConfig()
|
|
cfg.NumValidators = 1
|
|
suite.Run(t, NewE2ETestSuite(cfg))
|
|
}
|