diff --git a/test/integration/addons_test.go b/test/integration/addons_test.go index 5f735cfdb96e47063618c751c25e6f691c7928af..9c2dbdfa8428cb8b4818b04e83d1c8f53c52f6dd 100644 --- a/test/integration/addons_test.go +++ b/test/integration/addons_test.go @@ -74,17 +74,14 @@ func readLineWithTimeout(b *bufio.Reader, timeout time.Duration) (string, error) func testDashboard(t *testing.T) { t.Parallel() minikubeRunner := NewMinikubeRunner(t) - t.Logf("Launching dashboard ...") cmd, out := minikubeRunner.RunDaemon("dashboard --url") defer func() { - t.Logf("Killing dashboard ...") err := cmd.Process.Kill() if err != nil { t.Logf("Failed to kill dashboard command: %v", err) } }() - t.Logf("Waiting for URL to be output by minikube dashboard...") s, err := readLineWithTimeout(out, 180*time.Second) if err != nil { t.Fatalf("failed to read url: %v", err)