timy-messenger/test/widget_test.dart
Franz Heinfling 64d39ac266 Initial commit.
Co-authored-by: Miguel Beltran <m@beltran.work>
2019-10-01 17:26:36 +02:00

10 lines
267 B
Dart

import "package:circles_app/circles_app.dart";
import "package:flutter_test/flutter_test.dart";
void main() {
testWidgets("App loads test", (WidgetTester tester) async {
// Build our app and trigger a frame.
await tester.pumpWidget(CirclesApp());
});
}