1. 05 Apr, 2016 1 commit
  2. 02 Apr, 2016 1 commit
  3. 01 Apr, 2016 1 commit
  4. 31 Mar, 2016 1 commit
  5. 30 Mar, 2016 2 commits
  6. 29 Mar, 2016 1 commit
    • Yegor Jbanov's avatar
      [driver] fix observatory port # and timeline data extraction · bfa16b2b
      Yegor Jbanov authored
      The way we pick observatory port # has changed and we have broken
      logic that handles port 8181. To fix the buildbot, switch to port
      8182. We can later figure out what we want to do when we clean up
      port handling.
      
      The old VM extention for extracting the timeline data is gone.
      Switch to the new '_getVMTimeline' API.
      bfa16b2b
  7. 18 Mar, 2016 1 commit
  8. 14 Mar, 2016 4 commits
  9. 12 Mar, 2016 3 commits
  10. 11 Mar, 2016 1 commit
    • Ian Hickson's avatar
      Enable ALL THE LINTS · 1b9cd520
      Ian Hickson authored
      Well, all the easy ones, anyway.
      
      For some reason `// ignore:` isn't working for me so I've disabled
      lints that need that. Also disabled those that require a ton of work
      (which I'm doing, but not in this PR, to keep it reviewable).
      
      This adds:
      - avoid_init_to_null
      - library_names
      - package_api_docs
      - package_names
      - package_prefixed_library_names
      - prefer_is_not_empty
      - sort_constructors_first
      - sort_unnamed_constructors_first
      - unnecessary_getters_setters
      1b9cd520
  11. 10 Mar, 2016 1 commit
  12. 03 Mar, 2016 2 commits
  13. 02 Mar, 2016 1 commit
  14. 01 Mar, 2016 2 commits
  15. 26 Feb, 2016 1 commit
  16. 24 Feb, 2016 3 commits
  17. 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
  18. 18 Feb, 2016 2 commits
    • yjbanov's avatar
      move to pub version of vm_service_client · 439aadf4
      yjbanov authored
      439aadf4
    • Yegor Jbanov's avatar
      add flutter_driver package · b0e45594
      Yegor Jbanov authored
      This commit contains:
      
      - FlutterDriver API for e2e tests usable in conjunction with package:test
      - FlutterDriverExtension to be enabled by the application in order to
        allow an external agent to connect to it and drive user interactions and
        probe into the element tree
      - initial implementations of tap, findByValueKey and getText commands (to
        be expanded in future PRs)
      b0e45594