Files
p2p-rendering-computation/server/docker/docker_test.go
2021-04-07 23:58:28 +04:00

17 lines
176 B
Go

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