From 9152e671822aebdb4ccd5bec16335fac7fb7d74b Mon Sep 17 00:00:00 2001 From: Mihail Stoykov Date: Wed, 11 Dec 2024 17:08:26 +0200 Subject: [PATCH] Skip test due to https://github.com/grafana/k6/issues/4098 --- lib/netext/httpext/error_codes_test.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/netext/httpext/error_codes_test.go b/lib/netext/httpext/error_codes_test.go index 3db6ff63075..1b0ce9ff8fc 100644 --- a/lib/netext/httpext/error_codes_test.go +++ b/lib/netext/httpext/error_codes_test.go @@ -315,6 +315,9 @@ func TestHTTP2ConnectionError(t *testing.T) { func TestHTTP2GoAwayError(t *testing.T) { t.Parallel() + if runtime.GOOS == "windows" { + t.Skip("Skipped due to https://github.com/grafana/k6/issues/4098") + } tb := getHTTP2ServerWithCustomConnContext(t) tb.Mux.HandleFunc("/tsr", func(_ http.ResponseWriter, req *http.Request) { conn := req.Context().Value(connKey).(*tls.Conn)