From b524270af147847f64fa296cf6eed3633ffe683d Mon Sep 17 00:00:00 2001 From: Gary Qian Date: Wed, 18 Aug 2021 16:52:04 -0700 Subject: [PATCH] Skip flaky 'Child windows can handle touches' test in `android_views` integration test (#88475) --- dev/integration_tests/android_views/test_driver/main_test.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev/integration_tests/android_views/test_driver/main_test.dart b/dev/integration_tests/android_views/test_driver/main_test.dart index 37d0297696..363dacf644 100644 --- a/dev/integration_tests/android_views/test_driver/main_test.dart +++ b/dev/integration_tests/android_views/test_driver/main_test.dart @@ -61,6 +61,6 @@ Future main() async { find.byValueKey('WindowClickCount'), ); expect(windowClickCount, 'Click count: 1'); - }, timeout: Timeout.none); + }, timeout: Timeout.none, skip: true); // TODO(garyq): Skipped, see https://github.com/flutter/flutter/issues/88479 }); }