1. 27 May, 2016 1 commit
  2. 09 May, 2016 1 commit
  3. 04 May, 2016 1 commit
  4. 03 May, 2016 1 commit
  5. 04 Apr, 2016 1 commit
  6. 28 Mar, 2016 1 commit
  7. 11 Mar, 2016 1 commit
    • Hixie's avatar
      flutter analyze test · e6b82b6f
      Hixie authored
      Test that flutter analyze catches no error if two imported libraries
      have the same name.
      
      Also, make tests know how to find the flutter root and fix style in one
      test to be consistent with the rest of the file.
      e6b82b6f
  8. 10 Mar, 2016 1 commit
  9. 26 Feb, 2016 1 commit
  10. 23 Feb, 2016 1 commit
    • yjbanov's avatar
      "flutter create" can generate a basic driver test · 278630e6
      yjbanov authored
      "flutter create" adds option `--with-driver-test` that adds
      dependencies to `flutter_driver` in `pubspec.yaml` and creates
      a basic driver test runnable via `flutter drive
      --target=test_driver/e2e.dart`
      
      "flutter drive" new options:
      
      - `--keep-app-running` tells the driver to not stop the app after tests
        are done
      - `--use-existing-app` tells the driver to not start a new app but use
        an already running instance
      278630e6
  11. 20 Feb, 2016 1 commit
    • yjbanov's avatar
      "flutter drive" command · a2b1bd46
      yjbanov authored
      Runs a test app and a driver test simultaneously, then stops the app.
      
      Usage:
      
      ```
      flutter drive --target=/path/to/test/app.dart
      ```
      
      This command will look for `/path/to/test/app_test.dart` by
      convention. We will expand into other ways of discovering tests in the
      future.
      a2b1bd46