Tests are failing for widgets that rely on the Roll widget, as using it causes pumpAndSettle to time out.
Note that I added the following code to my tests to make sure accelerometer data is 'available':
setUp(() {
const MethodChannel('dev.fluttercommunity.plus/sensors/accelerometer')
.setMockMethodCallHandler((MethodCall methodCall) async {
if (methodCall.method == 'listen') {
return <String, dynamic>{};
}
return null;
});
});