From bdcb07b1a778ed0b0f3ff10244d7a950dcfb5ddd Mon Sep 17 00:00:00 2001 From: Alex Browne Date: Tue, 11 Feb 2020 16:50:08 -0800 Subject: [PATCH] Increase timeout for conversion tests --- Makefile | 2 +- browser/go/conversion-test/conversion_test.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 550b33efb..0caea1662 100644 --- a/Makefile +++ b/Makefile @@ -42,7 +42,7 @@ test-go: test-go-parallel test-go-serial .PHONY: test-go-parallel test-go-parallel: - go test ./... -race -timeout 30s + go test ./... -race -timeout 180s .PHONY: test-go-serial test-go-serial: diff --git a/browser/go/conversion-test/conversion_test.go b/browser/go/conversion-test/conversion_test.go index 3bfaca697..3dc3c16f3 100644 --- a/browser/go/conversion-test/conversion_test.go +++ b/browser/go/conversion-test/conversion_test.go @@ -35,7 +35,7 @@ var testCases []string func TestBrowserConversions(t *testing.T) { // Declare a context that will be used for all child processes, servers, and // other goroutines. - ctx, cancel := context.WithTimeout(context.Background(), 30*time.Second) + ctx, cancel := context.WithTimeout(context.Background(), 175*time.Second) ctx, _ = chromedp.NewContext(ctx, chromedp.WithErrorf(t.Errorf)) defer cancel()