Move scripts to a dedicated directory

(cherry picked from commit df59d6ca54dc5b4bf88f3ee81c2c09cc23d925b7)
This commit is contained in:
Nguyen Thai
2024-01-10 11:42:04 +07:00
committed by Dat H. Pham
parent 705a54ba5c
commit 3c7c7249d7
13 changed files with 57 additions and 29 deletions
+9
View File
@@ -0,0 +1,9 @@
#!/usr/bin/env bash
set -eux
if [[ "$MODULES" == "default" ]]; then
flutter test -r json > test-report-"$MODULES".json
else
flutter test -r json "$MODULES" > test-report-"$MODULES".json
fi