From 84acea3627adb53c483104f1b51df0a23a5e61d3 Mon Sep 17 00:00:00 2001 From: Seth Ladd Date: Thu, 7 Apr 2016 14:03:49 -0700 Subject: [PATCH] Make analyzer happy, remove incorrect instruction (#3181) Closes https://github.com/flutter/flutter/issues/3149 Closes https://github.com/flutter/flutter/issues/3148 --- .../flutter_tools/templates/driver/main_test.dart.tmpl | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) 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;