Files
Vishesh Handa cb020c00fe Add the first integration test using the flutter driver
We need to test the git operations on all the devices.
2019-02-05 14:35:36 +01:00

12 lines
284 B
Dart

import 'package:flutter/material.dart';
import 'package:flutter_driver/driver_extension.dart';
import 'package:journal/gitapp.dart';
//import 'package:journal/apis/git.dart';
void main() {
// This line enables the extension
enableFlutterDriverExtension();
runApp(GitApp());
}