Co-authored-by: Aleksandr Bezobchuk <alexanderbez@users.noreply.github.com> Co-authored-by: yihuang <huang@crypto.com> Co-authored-by: Facundo <facundomedica@gmail.com> Co-authored-by: Facundo Medica <14063057+facundomedica@users.noreply.github.com> Co-authored-by: Alex | Interchain Labs <alex@interchainlabs.io>
14 lines
154 B
Go
14 lines
154 B
Go
//go:build system_test
|
|
|
|
package systemtests
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"cosmossdk.io/systemtests"
|
|
)
|
|
|
|
func TestMain(m *testing.M) {
|
|
systemtests.RunTests(m)
|
|
}
|