From 64efe9c7bcadfd41ebf84dc13d422b00c421835a Mon Sep 17 00:00:00 2001 From: Bryan Oltman Date: Mon, 29 Apr 2024 11:28:07 -0400 Subject: [PATCH] test: filter patch e2e test output to reduce noise --- scripts/patch_e2e.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/patch_e2e.sh b/scripts/patch_e2e.sh index 1214bc85..69c6ac10 100755 --- a/scripts/patch_e2e.sh +++ b/scripts/patch_e2e.sh @@ -76,7 +76,7 @@ while IFS= read line; do echo "✅ 'hello shorebird' was printed" break fi -done < <(adb logcat -T '10.0') +done < <(adb logcat -T '10.0' | grep flutter) echo "✅ All tests passed!" exit 0