1. 15 Apr, 2016 1 commit
  2. 14 Mar, 2016 1 commit
  3. 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
  4. 03 Mar, 2016 1 commit
    • yjbanov's avatar
      [driver] serialize commands to plain strings · 008785be
      yjbanov authored
      Turns out VM service only accepts flat parameter name/value pairs. It
      only worked this far because vm_service_client (mistakenly) uses JSON
      encoder to encode parameters.
      
      This change separates the Command type hierarchy from that of Result and
      tightens type constraints on Command object parameters.
      008785be
  5. 18 Feb, 2016 1 commit
    • 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