From 9865e3ded82998e810c8eb0dca6195eada7c446d Mon Sep 17 00:00:00 2001 From: Jason Cameron Date: Sun, 13 Apr 2025 15:59:58 -0400 Subject: fix(fetch): improve error handling for Content-Type parsing (#253) * fix(fetch): improve error handling for Content-Type parsing Signed-off-by: Jason Cameron * fix(fetch): rename OgHandledError to ErrOgHandled for statichcheck to like me Signed-off-by: Jason Cameron --------- Signed-off-by: Jason Cameron --- internal/test/playwright_test.go | 3 +++ 1 file changed, 3 insertions(+) (limited to 'internal/test') diff --git a/internal/test/playwright_test.go b/internal/test/playwright_test.go index 88d94bc..d5010de 100644 --- a/internal/test/playwright_test.go +++ b/internal/test/playwright_test.go @@ -101,6 +101,9 @@ func doesNPXExist(t *testing.T) { } func run(t *testing.T, command string) string { + if testing.Short() { + t.Skip("skipping integration smoke testing in short mode") + } t.Helper() shPath, err := exec.LookPath("sh") -- cgit v1.2.3