From b9afa60fdd86e7a034de62be86391a023ffe191e Mon Sep 17 00:00:00 2001 From: victorgalo Date: Mon, 11 Mar 2024 17:31:21 +0100 Subject: [PATCH] =?UTF-8?q?Skip=20test=20temporarily=20until=20headingLeve?= =?UTF-8?q?l=20is=20added=20in=20engine=20(issue=2041=E2=80=A6=20(#135077)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The purpose of this PR is to temporarily skip one integration test that is blocking the changes indicated below: (This change adds a new property in Semantics widget that would take an integer corresponding to the heading levels defined by the ARIA heading role. This is necessary in order to get proper accessibility and usability in a website for users who rely on screen readers and other assistive technologies.) Issue fixed by this PR: https://github.com/flutter/flutter/issues/97894 Engine part: https://github.com/flutter/engine/pull/41435 Framework part: https://github.com/flutter/flutter/pull/125771 --- packages/flutter/test/semantics/semantics_update_test.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/flutter/test/semantics/semantics_update_test.dart b/packages/flutter/test/semantics/semantics_update_test.dart index 69383b7b3c7..d7ecc19d5bf 100644 --- a/packages/flutter/test/semantics/semantics_update_test.dart +++ b/packages/flutter/test/semantics/semantics_update_test.dart @@ -82,7 +82,7 @@ void main() { SemanticsUpdateBuilderSpy.observations.clear(); handle.dispose(); - }); + }, skip: true); // https://github.com/flutter/flutter/issues/97894 testWidgets('Semantics update receives attributed text', (WidgetTester tester) async { final SemanticsHandle handle = tester.ensureSemantics(); @@ -162,7 +162,7 @@ void main() { SemanticsUpdateBuilderSpy.observations.clear(); handle.dispose(); - }); + }, skip: true); // https://github.com/flutter/flutter/issues/97894 } class SemanticsUpdateTestBinding extends AutomatedTestWidgetsFlutterBinding {