refactor(group): CLI tests using Tendermint Mock (#13067)

This commit is contained in:
likhita-809
2022-09-05 14:31:30 +00:00
committed by GitHub
parent 8579bdd17e
commit 2efee04e4f
4 changed files with 1842 additions and 5 deletions
+19
View File
@@ -0,0 +1,19 @@
//go:build e2e
// +build e2e
package group
import (
"testing"
"github.com/cosmos/cosmos-sdk/simapp"
"github.com/cosmos/cosmos-sdk/testutil/network"
"github.com/stretchr/testify/suite"
)
func TestIntegrationTestSuite(t *testing.T) {
cfg := network.DefaultConfig(simapp.NewTestNetworkFixture)
cfg.NumValidators = 2
suite.Run(t, NewIntegrationTestSuite(cfg))
}