mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-07-17 18:49:55 +08:00

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.
8 lines
174 B
Dart
8 lines
174 B
Dart
import 'package:flutter_driver/driver_extension.dart';
|
|
import 'package:journal/app.dart';
|
|
|
|
void main() async {
|
|
enableFlutterDriverExtension();
|
|
await JournalApp.main();
|
|
}
|