Files
p2p-rendering-computation/server/docker/docker_test.go

17 lines
175 B
Go

package docker
import (
"fmt"
"testing"
)
func TestDocker(t *testing.T) {
resp,err := BuildRunContainer()
if err != nil {
t.Error(err)
}
fmt.Print(resp.VNCPort)
}