github.com/status-im/status-go@v1.1.0/server/pairing/preflight/preflight_test.go (about)

     1  package preflight
     2  
     3  import (
     4  	"testing"
     5  )
     6  
     7  func TestCheckOutbound(t *testing.T) {
     8  	err := CheckOutbound()
     9  	if err != nil {
    10  		t.Fatal(err)
    11  	}
    12  }