summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorquentin@aristote.fr <quentin@aristote.fr>2026-01-29 13:28:13 +0100
committerquentin@aristote.fr <quentin@aristote.fr>2026-01-29 13:28:13 +0100
commit012fed443eb5685b211fe1d45ec1aa10587b51e4 (patch)
tree5ce08d4c9564d56a59e1986294412559c5daab35 /tests
parent96452d85771fb6237cc8f0b1c8c0686c52c466a6 (diff)
tests: add headscale
Diffstat (limited to 'tests')
-rwxr-xr-xtests/run-tests.sh9
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.