From 4fd494fac22e158bf003dd5566cbb3020e883d87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=B0nan=C3=A7=20G=C3=BCm=C3=BC=C5=9F?= Date: Thu, 31 Aug 2023 16:22:46 +0300 Subject: [PATCH] Optimize TestK6Object to parallel After having a discussion, we decided to make this parallel. See the related discussion here: https://github.com/grafana/xk6-browser/pull/1007#discussion_r1311155144 --- tests/browser_context_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/browser_context_test.go b/tests/browser_context_test.go index 1be6d46c5..d4d36a489 100644 --- a/tests/browser_context_test.go +++ b/tests/browser_context_test.go @@ -434,6 +434,8 @@ func TestBrowserContextCookies(t *testing.T) { } func TestK6Object(t *testing.T) { + t.Parallel() + b := newTestBrowser(t, withFileServer()) p := b.NewPage(nil)