mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-09-10 18:45:53 +00:00
3924f02046
Tests were failing with connection refused even though healthcheck passed. This suggests the Docker port mapping may not be established when healthcheck passes. Add explicit verification step that curls localhost:7655 from the host before running tests. This will reveal if the issue is: 1. Port mapping not working (server healthy inside container but unreachable from host) 2. Server not actually running/listening 3. Timing issue where port mapping needs more time to establish If verification fails, output container logs to help diagnose the root cause. Related to #695