disable MotionEvents test (#54023)

This commit is contained in:
Amir Hardon 2020-04-04 19:25:11 -07:00 committed by GitHub
parent 46ce54db88
commit caeaac7739
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,6 +25,8 @@ Future<void> main() async {
await driver.waitFor(find.byValueKey('PlatformView'));
final String errorMessage = await driver.requestData('run test');
expect(errorMessage, '');
});
},
// TODO(amirh): enable this test https://github.com/flutter/flutter/issues/54022
skip: true);
});
}