famedlysdk/scripts/test.sh

12 lines
156 B
Bash
Raw Normal View History

2019-06-09 10:21:46 +00:00
#!/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