aboutsummaryrefslogtreecommitdiff
path: root/api/tests/gathered_zblocks.sh
diff options
context:
space:
mode:
authorkaotisk <kaotisk@arching-kaos.org>2024-12-07 03:32:51 +0200
committerkaotisk <kaotisk@arching-kaos.org>2024-12-07 03:32:51 +0200
commit9cb9fda65b96cf851f47a3fb6ec57b8d51b710cd (patch)
tree91adfd3c8dddf290e8357581bf4fb7622fa95726 /api/tests/gathered_zblocks.sh
parent61e46fdc08170e0c630ff9983b87fde6890e3caf (diff)
downloadarching-kaos-tools-9cb9fda65b96cf851f47a3fb6ec57b8d51b710cd.tar.gz
arching-kaos-tools-9cb9fda65b96cf851f47a3fb6ec57b8d51b710cd.tar.bz2
arching-kaos-tools-9cb9fda65b96cf851f47a3fb6ec57b8d51b710cd.zip
Silent curl, holy curl
Diffstat (limited to 'api/tests/gathered_zblocks.sh')
-rwxr-xr-xapi/tests/gathered_zblocks.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/api/tests/gathered_zblocks.sh b/api/tests/gathered_zblocks.sh
index 3e38ccc..bde7313 100755
--- a/api/tests/gathered_zblocks.sh
+++ b/api/tests/gathered_zblocks.sh
@@ -5,7 +5,7 @@ PROGRAM="$(basename $0)"
printf '[%s]\n' "$PROGRAM"
printf "TEST\t/see\n"
printf "\t01:\tOutput is valid JSON format..."
-curl http://127.0.0.1:8610/v0/see 2>/dev/null | jq > /dev/null
+curl -s http://127.0.0.1:8610/v0/see 2>/dev/null | jq > /dev/null
if [ $? -eq 0 ]
then
printf "\t\t\033[0;32mPASSED\033[0;0m"
@@ -15,7 +15,7 @@ fi
printf "\n"
printf "\t02:\tFound blocks inside response..."
-curl http://127.0.0.1:8610/v0/see 2>/dev/null | grep block > /dev/null
+curl -s http://127.0.0.1:8610/v0/see 2>/dev/null | grep block > /dev/null
if [ $? -eq 0 ]
then
printf "\t\t\033[0;32mPASSED\033[0;0m"