this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: correct preview test endpoint path

The preview endpoint is /api/v1/preview, not /ogpreview.
All 15 preview tests were getting HTML error pages.

+1 -1
+1 -1
tests/preview_test.sh
··· 3 3 # Usage: ./tests/preview_test.sh [BASE_URL] 4 4 5 5 BASE_URL="${1:-http://localhost:8080}" 6 - ENDPOINT="$BASE_URL/ogpreview" 6 + ENDPOINT="$BASE_URL/api/v1/preview" 7 7 8 8 echo "Running Preview Tests against $ENDPOINT" 9 9