Skip test temporarily until headingLevel is added in engine (issue 41… (#135077)

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
This commit is contained in:
victorgalo 2024-03-11 17:31:21 +01:00 committed by GitHub
parent 505a5153b0
commit b9afa60fdd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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 {