Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 441a3c8

Browse files
authored
Skip flaking test on Windows nobody is fixing. (#50401)
Filed flutter/flutter#142991 to re-enable.
1 parent 9938df6 commit 441a3c8

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

lib/web_ui/test/engine/pointer_binding_test.dart

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2620,8 +2620,9 @@ void _testClickDebouncer({required PointerBinding Function() getBinding}) {
26202620

26212621
void testWithSemantics(
26222622
String description,
2623-
Future<void> Function() body,
2624-
) {
2623+
Future<void> Function() body, {
2624+
Object? skip,
2625+
}) {
26252626
test(
26262627
description,
26272628
() async {
@@ -2631,6 +2632,7 @@ void _testClickDebouncer({required PointerBinding Function() getBinding}) {
26312632
await body();
26322633
EngineSemantics.instance.semanticsEnabled = false;
26332634
},
2635+
skip: skip,
26342636
);
26352637
}
26362638

@@ -2913,8 +2915,8 @@ void _testClickDebouncer({required PointerBinding Function() getBinding}) {
29132915
semanticsActions,
29142916
isEmpty,
29152917
);
2916-
});
2917-
2918+
// TODO(yjbanov): https://github.com/flutter/flutter/issues/142991.
2919+
}, skip: operatingSystem == OperatingSystem.windows);
29182920

29192921
testWithSemantics('Forwards click if enough time passed after the last flushed pointerup', () async {
29202922
expect(EnginePlatformDispatcher.instance.semanticsEnabled, true);

0 commit comments

Comments
 (0)