Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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