Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.

Commit 486da06

Browse files
author
Chris Yang
authored
[google_maps_flutter] add todo on skipped test. (#2752)
1 parent 4b7fe42 commit 486da06

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

packages/google_maps_flutter/google_maps_flutter/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
* iOS: Update the gesture recognizer blocking policy to "WaitUntilTouchesEnded", which fixes the camera idle callback not triggered issue.
44
* Update the min flutter version to 1.16.3.
5+
* Skip `testTakeSnapshot` test on Android.
56

67
## 0.5.27+2
78

packages/google_maps_flutter/google_maps_flutter/example/test_driver/google_maps_e2e.dart

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -940,5 +940,8 @@ void main() {
940940
final GoogleMapInspector inspector = await inspectorCompleter.future;
941941
final Uint8List bytes = await inspector.takeSnapshot();
942942
expect(bytes?.isNotEmpty, true);
943-
}, skip: Platform.isAndroid);
943+
},
944+
// TODO(cyanglaz): un-skip the test when we can test this on CI with API key enabled.
945+
// https://github.com/flutter/flutter/issues/57057
946+
skip: Platform.isAndroid);
944947
}

0 commit comments

Comments
 (0)