Temporarily skip CustomPainter SemanticsFlag test to allow new flag to roll in (#157061)

Same as https://github.com/flutter/flutter/pull/157017, but for `CustomPainter`.
This commit is contained in:
Yegor
2024-10-16 15:35:23 -07:00
committed by GitHub
parent b397ee3297
commit 54bf532305

View File

@@ -524,7 +524,11 @@ void _defineTests() {
);
expect(semantics, hasSemantics(expectedSemantics, ignoreRect: true, ignoreTransform: true));
semantics.dispose();
});
}, skip: true); // TODO(yjbanov): https://github.com/flutter/flutter/issues/66673
// Skipped temporarily to allow https://github.com/flutter/engine/pull/55780
// to roll into the framework, which introduces a new flag. Because this
// test enumerates all flags, the new flag breaks it. This test will need
// to be updated after the roll.
group('diffing', () {
testWidgets('complains about duplicate keys', (WidgetTester tester) async {