You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 23, 2026. It is now read-only.
Context
This follow-up task was identified during the review of PR #57.
Source PR: #57
PR Title: refactor: consolidate DevMode blocks with defer, enable skipped test suites
Suggested by: @copilot-pull-request-reviewer
Files:
progressive-enhancement/progressive_enhancement_test.go:56and:620Task Description
Two server readiness loops use
http.Getwith the default client (no timeout). If a connection attempt stalls, this can hang the test process in CI.Fix both locations:
setupServer()(line ~56): Use&http.Client{Timeout: 2 * time.Second}for the probe requestsTestProgressiveEnhancement_DisabledReturnsJSON(line ~620): Same fixThis issue was automatically created from PR review comments.