From ccc5db519bf3b29789a02ec6df7a014abeef8c5f Mon Sep 17 00:00:00 2001 From: Matthew Boedicker <24275+mmb@users.noreply.github.com> Date: Thu, 19 Mar 2026 21:04:53 -0700 Subject: [PATCH] Increase chromedp websocket URL read timeout It is occasionally failing in GitHub Actions. --- tests/integration/integration_suite_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/integration/integration_suite_test.go b/tests/integration/integration_suite_test.go index 799b33d..ef3e4b1 100644 --- a/tests/integration/integration_suite_test.go +++ b/tests/integration/integration_suite_test.go @@ -50,8 +50,8 @@ var _ = SynchronizedBeforeSuite( execAllocator, cancel := chromedp.NewExecAllocator(context.Background(), append(chromedp.DefaultExecAllocatorOptions[:], chromedp.Flag("disable-dev-shm-usage", true), - chromedp.Flag("no-sandbox", true), - chromedp.WSURLReadTimeout(30*time.Second), + chromedp.NoSandbox, + chromedp.WSURLReadTimeout(40*time.Second), )...) DeferCleanup(cancel) browser, cancel = chromedp.NewContext(execAllocator)