Skip to content

Commit

Permalink
fix: don't require db param for api test script
Browse files Browse the repository at this point in the history
  • Loading branch information
muety committed Dec 30, 2022
1 parent f755275 commit 814e74a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testing/run_api_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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=$?
Expand Down

0 comments on commit 814e74a

Please sign in to comment.