Widget test fails with No MediaQuery widget found
I had same problem and I also had to wrap it in MaterialApp, but I did that in a bit other way, without using MediaQuery. In my case it works
void main() {
Widget createWidgetForTesting({Widget child}){
return MaterialApp(
home: child,
);
}
testWidgets('Login Page smoke test', (WidgetTester tester) async {
await tester.pumpWidget(createWidgetForTesting(child: new LoginPage()));
await tester.pumpAndSettle();
});
}
You need to wrap your widget with the MediaQuery(...)
instance, and because you are using Scaffold(..)
you must wrap it in a MaterialApp(..)
Read more about MediaQuery
Example:
Widget testWidget = new MediaQuery(
data: new MediaQueryData(),
child: new MaterialApp(home: new LoginForm())
)