Skip to content

Instantly share code, notes, and snippets.

@adityadroid
Created August 13, 2019 18:37
Show Gist options
  • Save adityadroid/69f49d44d03c298b7b0e71ec535fe32c to your computer and use it in GitHub Desktop.
Save adityadroid/69f49d44d03c298b7b0e71ec535fe32c to your computer and use it in GitHub Desktop.
Hello world test for messio
testWidgets('Checking if hello world shows up', (WidgetTester tester) async {
// Build our app and trigger a frame.
await tester.pumpWidget(MyApp());
expect(find.text('Hello World!'), findsOneWidget);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment