From 01aa42b2f4ac507a2623925775db5eeac1e75ada Mon Sep 17 00:00:00 2001 From: Stuart Morgan Date: Tue, 1 Apr 2025 12:01:19 -0400 Subject: [PATCH] [google_maps_flutter] Skip impl copy of iOS tests Skips the implementation package coopy of the tests that have already been skipped in the app-facing package, as they are hanging the same way. This was masked by the hangs in the app-facing package, as they ran first in all-package test runs. Part of https://github.com/flutter/flutter/issues/166139 --- .../example/ios14/integration_test/google_maps_test.dart | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/google_maps_flutter/google_maps_flutter_ios/example/ios14/integration_test/google_maps_test.dart b/packages/google_maps_flutter/google_maps_flutter_ios/example/ios14/integration_test/google_maps_test.dart index 8883fd47020..9c700671465 100644 --- a/packages/google_maps_flutter/google_maps_flutter_ios/example/ios14/integration_test/google_maps_test.dart +++ b/packages/google_maps_flutter/google_maps_flutter_ios/example/ios14/integration_test/google_maps_test.dart @@ -1642,6 +1642,8 @@ void main() { await tester.pumpAndSettle(); }, variant: _cameraUpdateTypeVariants, + // Hanging in CI, https://github.com/flutter/flutter/issues/166139 + skip: true, ); /// Tests animating the camera with specified durations to verify timing @@ -1786,6 +1788,8 @@ void main() { await tester.pumpAndSettle(); }, variant: _cameraUpdateTypeVariants, + // Hanging in CI, https://github.com/flutter/flutter/issues/166139 + skip: true, ); }