cosmos-sdk/tests/systemtests/main_test.go
Tyler 7f7c41e4aa
feat: backport unordered transactions (#23708)
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>
2025-02-27 11:01:50 -08:00

14 lines
154 B
Go

//go:build system_test
package systemtests
import (
"testing"
"cosmossdk.io/systemtests"
)
func TestMain(m *testing.M) {
systemtests.RunTests(m)
}