Files
Vishesh Handa 00355c532b Add a trivial integration test which just takes a screenshot
This required refactoring the code. With this we can now write an
integration test to test the main parts of the app, but more importantly
we can automate the process of generating the screenshots.
2019-02-16 00:16:32 +01:00

8 lines
174 B
Dart

import 'package:flutter_driver/driver_extension.dart';
import 'package:journal/app.dart';
void main() async {
enableFlutterDriverExtension();
await JournalApp.main();
}