fix: Switch back to flutter drive

This commit is contained in:
Blazebrain 2025-01-16 14:55:31 +01:00
parent 3ca0334c0f
commit 5060cbe55e

View file

@ -18,7 +18,9 @@ do
rm -rf ~/.local/share/com.example.cake_wallet ~/Documents/cake_wallet
fi
echo "Running test: $target"
if flutter test $target; then
if flutter drive \
--driver=test_driver/integration_test.dart \
--target="$target"; then
echo "✅ Test passed: $target"
passed_tests+=("$target")
else