We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6eb876 commit 9cfa329Copy full SHA for 9cfa329
1 file changed
test/run_tests.sh
@@ -16,7 +16,7 @@ until curl -s "${BACKEND_URL}/health" > /dev/null; do
16
done
17
18
# Wait for docurift
19
-until curl -s "${ANALYZER_URL}/openapi.json" > /dev/null; do
+until curl -s "${ANALYZER_URL}/api/openapi.json" > /dev/null; do
20
echo "Waiting for docurift..."
21
sleep 1
22
@@ -29,7 +29,7 @@ go test -v ./shop
29
echo "Fetching OpenAPI specification..."
30
31
# Fetch OpenAPI spec
32
-curl -s "${ANALYZER_URL}/openapi.json" > /tmp/openapi.json
+curl -s "${ANALYZER_URL}/api/openapi.json" > /tmp/openapi.json
33
34
# Basic validation
35
if ! jq -e '.openapi' /tmp/openapi.json > /dev/null; then
0 commit comments