package balboa import ( "os" "testing" ) var ( testExitCode = 0 ) func TestMain(m *testing.M) { defer func() { os.Exit(testExitCode) }() testExitCode = m.Run() }