Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pointer_interceptor_web] Skip broken semantics tests and do a manual roll #6342

Merged
merged 2 commits into from
Mar 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .ci/flutter_master.version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
c01d7f06986146646fb26470453b9a6eda033872
71606af8d82e7a630aaff4d57cd5e984fcc3ae02
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,10 @@ void main() {

expect(element.tagName.toLowerCase(), 'flt-semantics');
expect(element.getAttribute('aria-label'), 'Works As Expected');
});
},
// TODO(bparrishMines): The semantics label is returning null.
// See https://github.com/flutter/flutter/issues/145238
skip: true);

testWidgets(
'finds semantics of wrapped widgets with intercepting set to false',
Expand All @@ -88,7 +91,10 @@ void main() {
expect(element.tagName.toLowerCase(), 'flt-semantics');
expect(element.getAttribute('aria-label'),
'Never calls onPressed transparent');
});
},
// TODO(bparrishMines): The semantics label is returning null.
// See https://github.com/flutter/flutter/issues/145238
skip: true);

testWidgets('finds semantics of unwrapped elements',
(WidgetTester tester) async {
Expand All @@ -99,7 +105,10 @@ void main() {

expect(element.tagName.toLowerCase(), 'flt-semantics');
expect(element.getAttribute('aria-label'), 'Never calls onPressed');
});
},
// TODO(bparrishMines): The semantics label is returning null.
// See https://github.com/flutter/flutter/issues/145238
skip: true);

// Notice that, when hit-testing the background platform view, instead of
// finding a semantics node, the platform view itself is found. This is
Expand Down