Skip to content

Commit

Permalink
tests: skip animateCamera integration tests on android
Browse files Browse the repository at this point in the history
  • Loading branch information
jokerttu committed Dec 13, 2024
1 parent 94fb75a commit 45f5b8a
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -698,10 +698,12 @@ void runTests() {
beforeFinishedPosition,
controller,
(Matcher matcher) => matcher);

await tester.pumpAndSettle();
}, variant: _cameraUpdateTypeVariants);

},
variant: _cameraUpdateTypeVariants,
// TODO(stuartmorgan): Remove skip for Android platform once Maps API key is
// available for LUCI, https://github.com/flutter/flutter/issues/131071
skip: isAndroid,
);

/// Tests animating the camera with specified durations to verify timing
/// behavior.
Expand Down Expand Up @@ -842,9 +844,11 @@ void runTests() {
(Matcher matcher) => matcher);
},
variant: _cameraUpdateTypeVariants,
// TODO(jokerttu): Remove skip once the web implementation is available.
// TODO(jokerttu): Remove skip once the web implementation is available,
// https://github.com/flutter/flutter/issues/159265
skip: kIsWeb,
// TODO(stuartmorgan): Remove skip for Android platform once Maps API key is
// available for LUCI, https://github.com/flutter/flutter/issues/131071
skip: kIsWeb || isAndroid,
);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1537,8 +1537,12 @@ void googleMapsTests() {
(Matcher matcher) => matcher);

await tester.pumpAndSettle();
}, variant: _cameraUpdateTypeVariants);

},
variant: _cameraUpdateTypeVariants,
// TODO(stuartmorgan): Remove skip once Maps API key is available for LUCI,
// https://github.com/flutter/flutter/issues/131071
skip: true,
);

/// Tests animating the camera with specified durations to verify timing
/// behavior.
Expand Down Expand Up @@ -1682,6 +1686,9 @@ void googleMapsTests() {
await tester.pumpAndSettle();
},
variant: _cameraUpdateTypeVariants,
// TODO(stuartmorgan): Remove skip once Maps API key is available for LUCI,
// https://github.com/flutter/flutter/issues/131071
skip: true,
);
}

Expand Down

0 comments on commit 45f5b8a

Please sign in to comment.