Unverified Commit 74f8b4f7 authored by Polina Cherkasova's avatar Polina Cherkasova Committed by GitHub

Allow leaks around tap down/up, while flackiness is not fixed. (#136133)

parent 5207a309
......@@ -318,7 +318,11 @@ void main() {
final Container decoyLaterContainer = tester.firstElement(findBuilderDecoyChild()).widget as Container;
final BoxDecoration? decoyLaterDecoration = decoyLaterContainer.decoration as BoxDecoration?;
expect(decoyLaterDecoration?.borderRadius, isNot(equals(BorderRadius.circular(0))));
});
},
// TODO(polina-c): remove after fixing flakiness
// https://github.com/flutter/flutter/issues/136132
leakTrackingTestConfig: const LeakTrackingTestConfig(notDisposedAllowList: <String, int?>{'ValueNotifier<_OverlayEntryWidgetState?>' : 1}),
);
testWidgetsWithLeakTracking('Hovering over Cupertino context menu updates cursor to clickable on Web', (WidgetTester tester) async {
final Widget child = getChild();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment