mirror of
https://github.com/planetmint/planetmint-go.git
synced 2025-06-23 14:32:31 +00:00
14 lines
216 B
Go
14 lines
216 B
Go
package dao
|
|
|
|
import (
|
|
"planetmint-go/testutil/network"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/suite"
|
|
)
|
|
|
|
func TestE2ETestSuite(t *testing.T) {
|
|
cfg := network.DefaultConfig()
|
|
suite.Run(t, NewE2ETestSuite(cfg))
|
|
}
|