Disables tests failing due to new semantics flag. (#63595)

This commit is contained in:
Alexander Brusher 2020-08-26 20:38:05 -07:00 committed by GitHub
parent d2f771abec
commit 39e7eeaed1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -502,7 +502,7 @@ void _defineTests() {
);
expect(semantics, hasSemantics(expectedSemantics, ignoreRect: true, ignoreTransform: true));
semantics.dispose();
});
}, skip: true); // TODO(abrusher): Enable once engine PR #20385 lands.
group('diffing', () {
testWidgets('complains about duplicate keys', (WidgetTester tester) async {

View File

@ -542,7 +542,7 @@ void main() {
expect(semantics, hasSemantics(expectedSemantics, ignoreId: true));
semantics.dispose();
});
}, skip: true); // TODO(abrusher): Enable once engine PR #20385 lands.
testWidgets('Actions can be replaced without triggering semantics update', (WidgetTester tester) async {
final SemanticsTester semantics = SemanticsTester(tester);