famedlysdk/scripts/test.sh

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