cosmos-sdk/tests/systemtests/main_test.go
mergify[bot] 9402649d98
refactor(systemtests): Extract system test framework (backport #22578) (#22655)
Co-authored-by: Alexander Peters <alpe@users.noreply.github.com>
Co-authored-by: Julien Robert <julien@rbrt.fr>
2024-11-26 18:01:24 +01:00

14 lines
158 B
Go

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