Files
p2p-rendering-computation/server/docker/docker_test.go
2021-05-09 05:23:25 +04:00

18 lines
227 B
Go

package docker
import (
"fmt"
"testing"
)
func TestDocker(t *testing.T) {
//TODO overwrite with custom docker paths
resp,err := BuildRunContainer(2,"false")
if err != nil {
t.Error(err)
}
fmt.Print(resp.VNCPort)
}