Add test for subscriptions.

This commit is contained in:
Kavin 2023-04-27 08:08:55 +01:00
parent f19f2b4c9a
commit 7470554973
No known key found for this signature in database
GPG Key ID: 49451E4482CC5BCD
1 changed files with 3 additions and 0 deletions

View File

@ -104,6 +104,9 @@ curl "${CURLOPTS[@]}" $HOST/import -X POST -H "Content-Type: application/json" -
# Wait 2s to allow the subscription request to be processed
sleep 2
# Check Subscriptions
curl "${CURLOPTS[@]}" $HOST/subscriptions -H "Authorization: $AUTH_TOKEN" || exit 1
# Check Feed
curl "${CURLOPTS[@]}" $HOST/feed -G --data-urlencode "authToken=$AUTH_TOKEN" || exit 1