Increase a test timeout in e2e_test.go

This commit is contained in:
Ryan Richard 2022-03-22 12:13:10 -07:00
parent d20b2056f2
commit 2715741c2c
1 changed files with 1 additions and 1 deletions

View File

@ -259,7 +259,7 @@ func TestE2EFullIntegration_Browser(t *testing.T) { // nolint:gocyclo
t.Logf("waiting for kubectl to output namespace list")
var kubectlOutput string
select {
case <-time.After(10 * time.Second):
case <-time.After(1 * time.Minute):
require.Fail(t, "timed out waiting for kubectl output")
case kubectlOutput = <-kubectlOutputChan:
}