Skip to content

Commit

Permalink
[google_maps_flutter] Disable setAndGetScrollPosition on iOS (#7609)
Browse files Browse the repository at this point in the history
Disables tests that are suddenly flaking very badly and keeping the tree closed.

Tracked in flutter/flutter#154826
  • Loading branch information
stuartmorgan authored Sep 9, 2024
1 parent b4e0fc1 commit 8d1acdd
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -568,7 +568,8 @@ Future<void> main() async {
});
},
// Scroll position is currently not implemented for macOS.
skip: Platform.isMacOS);
// Flakes on iOS: https://github.com/flutter/flutter/issues/154826
skip: Platform.isMacOS || Platform.isIOS);

group('NavigationDelegate', () {
const String blankPage = '<!DOCTYPE html><head></head><body></body></html>';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -893,7 +893,8 @@ Future<void> main() async {
});
},
// Scroll position is currently not implemented for macOS.
skip: Platform.isMacOS);
// Flakes on iOS: https://github.com/flutter/flutter/issues/154826
skip: Platform.isMacOS || Platform.isIOS);

group('NavigationDelegate', () {
const String blankPage = '<!DOCTYPE html><head></head><body></body></html>';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -808,7 +808,8 @@ Future<void> main() async {
});
},
// Scroll position is currently not implemented for macOS.
skip: Platform.isMacOS);
// Flakes on iOS: https://github.com/flutter/flutter/issues/154826
skip: Platform.isMacOS || Platform.isIOS);

group('NavigationDelegate', () {
const String blankPage = '<!DOCTYPE html><head></head><body></body></html>';
Expand Down

0 comments on commit 8d1acdd

Please sign in to comment.