* Add go.mod for simapp * creating dep check script * new version of cosmos-sdk * tests/ must be a module also if it is to test simapp * maybe add a github action which should fail * mv tests/mocks -> testutil/mock * Refactor usages of tests/mocks * update build command * fix rosetta tests * go mod tidy * use cosmossdk.io/simapp * Update sim entrypoints * use simapp as a module * go mod tidy * Add replaced for vuln package * fix vuln dep * this CI run should fail * this CI run should succeed * use absolute path in makefile
20 lines
353 B
Go
20 lines
353 B
Go
//go:build e2e
|
|
// +build e2e
|
|
|
|
package mint
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/suite"
|
|
|
|
"cosmossdk.io/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))
|
|
}
|