Skip to content

Commit

Permalink
[ci] Re-enable google_maps_flutter_web integration tests. (#7269)
Browse files Browse the repository at this point in the history
Attempt to re-enable integration tests on the `google_maps_flutter_web` package, post-package:web migration, see what happens.

Part of: #7087
  • Loading branch information
ditman authored Aug 2, 2024
1 parent 1c4b286 commit 3ad6fb8
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,6 @@ void main() {

testWidgets('markers with custom asset icon work',
(WidgetTester tester) async {
tester.view.devicePixelRatio = 2.0;
final Set<Marker> markers = <Marker>{
Marker(
markerId: const MarkerId('1'),
Expand Down Expand Up @@ -246,7 +245,6 @@ void main() {

testWidgets('markers with custom asset icon and pixelratio work',
(WidgetTester tester) async {
tester.view.devicePixelRatio = 2.0;
final Set<Marker> markers = <Marker>{
Marker(
markerId: const MarkerId('1'),
Expand Down Expand Up @@ -278,8 +276,6 @@ void main() {
});
testWidgets('markers with custom asset icon with width and height work',
(WidgetTester tester) async {
tester.view.devicePixelRatio = 2.0;

final Set<Marker> markers = <Marker>{
Marker(
markerId: const MarkerId('1'),
Expand Down Expand Up @@ -314,7 +310,6 @@ void main() {

testWidgets('markers with missing asset icon should not set size',
(WidgetTester tester) async {
tester.view.devicePixelRatio = 2.0;
final Set<Marker> markers = <Marker>{
Marker(
markerId: const MarkerId('1'),
Expand Down Expand Up @@ -342,7 +337,6 @@ void main() {
// https://github.com/flutter/flutter/issues/66622
testWidgets('markers with custom bitmap icon work',
(WidgetTester tester) async {
tester.view.devicePixelRatio = 2.0;
final Uint8List bytes = const Base64Decoder().convert(iconImageBase64);
final Set<Marker> markers = <Marker>{
Marker(
Expand Down Expand Up @@ -384,7 +378,6 @@ void main() {

testWidgets('markers with custom bitmap icon and pixelratio work',
(WidgetTester tester) async {
tester.view.devicePixelRatio = 2.0;
final Uint8List bytes = const Base64Decoder().convert(iconImageBase64);
final Set<Marker> markers = <Marker>{
Marker(
Expand Down Expand Up @@ -418,7 +411,6 @@ void main() {
// https://github.com/flutter/flutter/issues/73789
testWidgets('markers with custom bitmap icon pass size to sdk',
(WidgetTester tester) async {
tester.view.devicePixelRatio = 2.0;
final Uint8List bytes = const Base64Decoder().convert(iconImageBase64);
final Set<Marker> markers = <Marker>{
Marker(
Expand Down
2 changes: 1 addition & 1 deletion script/configs/exclude_integration_web.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Currently missing: https://github.com/flutter/flutter/issues/82211
- file_selector
# Waiting on https://github.com/flutter/flutter/issues/145149
- google_maps_flutter
- google_maps_flutter/google_maps_flutter

0 comments on commit 3ad6fb8

Please sign in to comment.