diff options
| author | Jason Cameron <git@jasoncameron.dev> | 2025-04-13 15:59:58 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-13 15:59:58 -0400 |
| commit | 9865e3ded82998e810c8eb0dca6195eada7c446d (patch) | |
| tree | d6e02819c93641496d26ec6da2b808d2351045b3 /internal/test/playwright_test.go | |
| parent | 3438595f32650c5e355063e70398436fd5957056 (diff) | |
| download | anubis-9865e3ded82998e810c8eb0dca6195eada7c446d.tar.xz anubis-9865e3ded82998e810c8eb0dca6195eada7c446d.zip | |
fix(fetch): improve error handling for Content-Type parsing (#253)
* fix(fetch): improve error handling for Content-Type parsing
Signed-off-by: Jason Cameron <git@jasoncameron.dev>
* fix(fetch): rename OgHandledError to ErrOgHandled for statichcheck to like me
Signed-off-by: Jason Cameron <git@jasoncameron.dev>
---------
Signed-off-by: Jason Cameron <git@jasoncameron.dev>
Diffstat (limited to 'internal/test/playwright_test.go')
| -rw-r--r-- | internal/test/playwright_test.go | 3 |
1 files changed, 3 insertions, 0 deletions
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") |
