cosmos-sdk/tests/systemtests/main_test.go
Alexander Peters 14d98d2771
refactor(systemtests): Extract system test framework (#22578)
Co-authored-by: marbar3778 <marbar3778@yahoo.com>
2024-11-26 14:46:54 +00: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)
}