diff --git a/packages/flutter_tools/templates/driver/main_test.dart.tmpl b/packages/flutter_tools/templates/driver/main_test.dart.tmpl index 7010ff6b97..3da4440dc3 100644 --- a/packages/flutter_tools/templates/driver/main_test.dart.tmpl +++ b/packages/flutter_tools/templates/driver/main_test.dart.tmpl @@ -3,16 +3,11 @@ // process or even from another computer. If you are familiar with // Selenium/WebDriver for web, Espresso for Android or UI Automation for iOS, // this is simply Flutter's version of that. -// -// To start the test run the following command from the root of your application -// package: -// -// flutter drive --target=test_driver/main_test.dart import 'package:flutter_driver/flutter_driver.dart'; import 'package:test/test.dart'; -main() { +void main() { group('end-to-end test', () { FlutterDriver driver;