Files
troubleshoot/pkg/analyze/main_test.go
2020-01-30 21:01:06 +00:00

13 lines
143 B
Go

package analyzer
import (
"os"
"testing"
"go.undefinedlabs.com/scopeagent"
)
func TestMain(m *testing.M) {
os.Exit(scopeagent.Run(m))
}