* wip * fix something * remove test case from tx test * fix test * add build tags to cli test * use require instead of assert * add cli tests
20 lines
373 B
Go
20 lines
373 B
Go
//go:build e2e
|
|
// +build e2e
|
|
|
|
package evidence
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/suite"
|
|
|
|
"github.com/cosmos/cosmos-sdk/simapp"
|
|
"github.com/cosmos/cosmos-sdk/testutil/network"
|
|
)
|
|
|
|
func TestIntegrationTestSuite(t *testing.T) {
|
|
cfg := network.DefaultConfig(simapp.NewTestNetworkFixture)
|
|
cfg.NumValidators = 1
|
|
suite.Run(t, NewIntegrationTestSuite(cfg))
|
|
}
|