Skip to content

Commit b9afa60

Browse files
authored
Skip test temporarily until headingLevel is added in engine (issue 41… (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
1 parent 505a515 commit b9afa60

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/flutter/test/semantics/semantics_update_test.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ void main() {
8282

8383
SemanticsUpdateBuilderSpy.observations.clear();
8484
handle.dispose();
85-
});
85+
}, skip: true); // https://github.com/flutter/flutter/issues/97894
8686

8787
testWidgets('Semantics update receives attributed text', (WidgetTester tester) async {
8888
final SemanticsHandle handle = tester.ensureSemantics();
@@ -162,7 +162,7 @@ void main() {
162162

163163
SemanticsUpdateBuilderSpy.observations.clear();
164164
handle.dispose();
165-
});
165+
}, skip: true); // https://github.com/flutter/flutter/issues/97894
166166
}
167167

168168
class SemanticsUpdateTestBinding extends AutomatedTestWidgetsFlutterBinding {

0 commit comments

Comments
 (0)