Files
p2p-rendering-computation/p2p/upnp_test.go
2024-08-22 17:14:13 +01:00

16 lines
203 B
Go

package p2p
import (
"fmt"
"testing"
)
// Tests if the current has UPNP support
func TestForwardUPNPPort(t *testing.T) {
err := ForwardPort(6586)
if err != nil {
fmt.Println(err)
t.Fail()
}
}