status-go/server/pairing/preflight/preflight_test.go

13 lines
142 B
Go
Raw Normal View History

package preflight
import (
"testing"
)
func TestCheckOutbound(t *testing.T) {
err := CheckOutbound()
if err != nil {
t.Fatal(err)
}
}