famedlysdk/scripts/test.sh
Christian Pauly 3e75ecac22 Add scripts
2019-06-09 12:21:46 +02:00

12 lines
156 B
Bash
Executable file

#!/usr/bin/env bash
if [ -d test ]
then
if [ -z "$(ls -A test)" ]; then
exit 0
else
flutter test --coverage
fi
else
exit 0
fi