From 76c6499819870a2dd2434046164c3eed3448b1f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20M=C3=BCnch?= Date: Sun, 17 Dec 2023 11:13:41 +0100 Subject: [PATCH] Print health check output in test.bats --- tests/test.bats | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tests/test.bats b/tests/test.bats index 8799e5a..6fe5414 100644 --- a/tests/test.bats +++ b/tests/test.bats @@ -1,6 +1,5 @@ setup() { set -eu -o pipefail - set -x brew_prefix=$(brew --prefix) load "${brew_prefix}/lib/bats-support/load.bash" @@ -26,9 +25,8 @@ health_checks() { assert_success # Make sure we can hit the 9201 and 5602 port successfully - curl -s -I -f https://${PROJNAME}.ddev.site:9201 >/tmp/curlout.txt - curl -s -I -f https://${PROJNAME}.ddev.site:5602 >/tmp/curlout.txt - cat /tmp/curlout.txt + curl -s -I -f https://${PROJNAME}.ddev.site:9201 + curl -s -I -f https://${PROJNAME}.ddev.site:5601 } teardown() {