fix(e2e): set longer timeout for docker

pull/606/head
Adam Reese 10 years ago
parent 97b1a7b815
commit 3921637878

@ -10,6 +10,7 @@ import (
"path/filepath"
"strings"
"testing"
"time"
)
const (
@ -21,12 +22,14 @@ type HelmContext struct {
t *testing.T
Path string
Host string
Timeout time.Duration
}
func NewHelmContext(t *testing.T) *HelmContext {
return &HelmContext{
t: t,
Path: RepoRoot() + "/bin/helm",
Timeout: time.Second * 20,
}
}

Loading…
Cancel
Save