mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 14:16:21 +00:00
13 lines
142 B
Go
13 lines
142 B
Go
package preflight
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestCheckOutbound(t *testing.T) {
|
|
err := CheckOutbound()
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|