This repository was archived by the owner on Feb 22, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +2
-5
lines changed
packages/google_maps_flutter/google_maps_flutter/example/test_driver Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -443,14 +443,11 @@ void main() {
443443 await mapControllerCompleter.future;
444444
445445 await tester.pumpAndSettle ();
446- // TODO(cyanglaz): Remove this after we added `mapRendered` callback, and `mapControllerCompleter.complete(controller)` above should happen
447- // in `mapRendered`.
448- // https://github.com/flutter/flutter/issues/54758
449- await Future .delayed (Duration (seconds: 1 ));
450446
451447 ScreenCoordinate coordinate =
452448 await mapController.getScreenCoordinate (_kInitialCameraPosition.target);
453449 Rect rect = tester.getRect (find.byKey (key));
450+ print (coordinate);
454451 if (Platform .isIOS) {
455452 // On iOS, the coordinate value from the GoogleMapSdk doesn't include the devicePixelRatio`.
456453 // So we don't need to do the conversion like we did below for other platforms.
@@ -468,7 +465,7 @@ void main() {
468465 tester.binding.window.devicePixelRatio)
469466 .round ());
470467 }
471- });
468+ }, skip : true ); // https://github.com/flutter/flutter/issues/54758
472469
473470 testWidgets ('testGetVisibleRegion' , (WidgetTester tester) async {
474471 final Key key = GlobalKey ();
You can’t perform that action at this time.
0 commit comments