This repository was archived by the owner on Feb 25, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff 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 );
You can’t perform that action at this time.
0 commit comments