mirror of
https://github.com/replicatedhq/troubleshoot.git
synced 2026-04-15 07:16:34 +00:00
13 lines
143 B
Go
13 lines
143 B
Go
package analyzer
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
|
|
"go.undefinedlabs.com/scopeagent"
|
|
)
|
|
|
|
func TestMain(m *testing.M) {
|
|
os.Exit(scopeagent.Run(m))
|
|
}
|