diff --git a/.ci/flutter_master.version b/.ci/flutter_master.version index 878321c6405..c8d24272048 100644 --- a/.ci/flutter_master.version +++ b/.ci/flutter_master.version @@ -1 +1 @@ -394269f9ea2e6ada1ba69b798791d6c3bec51168 +c01d7f06986146646fb26470453b9a6eda033872 diff --git a/packages/camera/camera_web/example/integration_test/camera_web_test.dart b/packages/camera/camera_web/example/integration_test/camera_web_test.dart index 6c73bcf76bd..56fb16cfab9 100644 --- a/packages/camera/camera_web/example/integration_test/camera_web_test.dart +++ b/packages/camera/camera_web/example/integration_test/camera_web_test.dart @@ -2384,10 +2384,9 @@ void main() { testWidgets('onCameraResolutionChanged emits an empty stream', (WidgetTester tester) async { - expect( - CameraPlatform.instance.onCameraResolutionChanged(cameraId), - emits(isEmpty), - ); + final Stream stream = + CameraPlatform.instance.onCameraResolutionChanged(cameraId); + expect(await stream.isEmpty, isTrue); }); testWidgets( @@ -2968,20 +2967,18 @@ void main() { (WidgetTester tester) async { when(() => window.screen).thenReturn(null); - expect( - CameraPlatform.instance.onDeviceOrientationChanged(), - emits(isEmpty), - ); + final Stream stream = + CameraPlatform.instance.onDeviceOrientationChanged(); + expect(await stream.isEmpty, isTrue); }); testWidgets('when screen orientation is not supported', (WidgetTester tester) async { when(() => screen.orientation).thenReturn(null); - expect( - CameraPlatform.instance.onDeviceOrientationChanged(), - emits(isEmpty), - ); + final Stream stream = + CameraPlatform.instance.onDeviceOrientationChanged(); + expect(await stream.isEmpty, isTrue); }); }); diff --git a/packages/google_maps_flutter/google_maps_flutter_web/example/integration_test/projection_test.dart b/packages/google_maps_flutter/google_maps_flutter_web/example/integration_test/projection_test.dart index e64bd43561a..c5d2ff7aba2 100644 --- a/packages/google_maps_flutter/google_maps_flutter_web/example/integration_test/projection_test.dart +++ b/packages/google_maps_flutter/google_maps_flutter_web/example/integration_test/projection_test.dart @@ -71,7 +71,10 @@ void main() { expect(await controller.getZoomLevel(), 12); expect(coords.latitude, closeTo(19, _acceptableLatLngDelta)); expect(coords.longitude, closeTo(26, _acceptableLatLngDelta)); - }); + }, + // TODO(bparrishMines): This is failing due to an error being thrown after + // completion. See https://github.com/flutter/flutter/issues/145149 + skip: true); testWidgets('addPadding', (WidgetTester tester) async { const LatLng initialMapCenter = LatLng(0, 0); diff --git a/script/configs/exclude_integration_web.yaml b/script/configs/exclude_integration_web.yaml index 6c0fc4efcb7..59b7d8fae14 100644 --- a/script/configs/exclude_integration_web.yaml +++ b/script/configs/exclude_integration_web.yaml @@ -1,2 +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