11 lines
303 B
Dart
Executable File
11 lines
303 B
Dart
Executable File
import 'package:flutter_driver/driver_extension.dart';
|
|
import 'main_test.dart' as app;
|
|
|
|
void main() {
|
|
// This line enables the extension.
|
|
enableFlutterDriverExtension();
|
|
|
|
// Call the `main()` function of the app, or call `runApp` with
|
|
// any widget you are interested in testing.
|
|
app.main();
|
|
} |