Skip to content

Commit

Permalink
Skip test temporarily until headingLevel is added in engine (issue 41… (
Browse files Browse the repository at this point in the history
flutter#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:
flutter#97894

Engine part:
flutter/engine#41435 

Framework part:
flutter#125771
  • Loading branch information
victorgalo authored Mar 11, 2024
1 parent 505a515 commit b9afa60
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/flutter/test/semantics/semantics_update_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down Expand Up @@ -162,7 +162,7 @@ void main() {

SemanticsUpdateBuilderSpy.observations.clear();
handle.dispose();
});
}, skip: true); // https://github.com/flutter/flutter/issues/97894
}

class SemanticsUpdateTestBinding extends AutomatedTestWidgetsFlutterBinding {
Expand Down

0 comments on commit b9afa60

Please sign in to comment.