diff options
| author | quentin@aristote.fr <quentin@aristote.fr> | 2026-01-29 13:28:13 +0100 |
|---|---|---|
| committer | quentin@aristote.fr <quentin@aristote.fr> | 2026-01-29 13:28:13 +0100 |
| commit | 012fed443eb5685b211fe1d45ec1aa10587b51e4 (patch) | |
| tree | 5ce08d4c9564d56a59e1986294412559c5daab35 /tests/run-tests.sh | |
| parent | 96452d85771fb6237cc8f0b1c8c0686c52c466a6 (diff) | |
tests: add headscale
Diffstat (limited to 'tests/run-tests.sh')
| -rwxr-xr-x | tests/run-tests.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/run-tests.sh b/tests/run-tests.sh index e01d239..401b0c3 100755 --- a/tests/run-tests.sh +++ b/tests/run-tests.sh @@ -41,6 +41,15 @@ do echo "Up and running at $URL !" fi done +echo Checking connection to container version of mesh.aristote.fr ... +URL="http://$IP:8085/health" +RESULT=$(curl "$URL" $CURL_FLAGS) +if [[ "$RESULT" != '{"status":"pass"}' ]] +then + echo "Connection failed." +else + echo "Up and running at $URL !" +fi echo Done. |
