fix: don't require db param for api test script

This commit is contained in:
Ferdinand Mütsch 2022-12-30 13:41:49 +01:00
parent f755275309
commit 814e74a41e
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ echo "Configuration file: $config"
pid=$!
wait_for_wakapi
if [ "$1" == "sqlite" ]; then
if [ "$1" == "sqlite" ] || [ -z "$1" ]; then
echo "Running test collection ..."
newman run "wakapi_api_tests.postman_collection.json"
exit_code=$?