15 lines
295 B
Bash
Executable File
15 lines
295 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
ROOT_DIR="$(cd "$(dirname "$0")/.." && pwd)"
|
|
APP_DIR="$ROOT_DIR/app"
|
|
|
|
if ! command -v flutter >/dev/null 2>&1; then
|
|
echo "flutter command not found. Install Flutter SDK before running tests." >&2
|
|
exit 127
|
|
fi
|
|
|
|
cd "$APP_DIR"
|
|
flutter analyze
|
|
flutter test
|