1. 09 Jan, 2017 1 commit
  2. 08 Nov, 2016 1 commit
  3. 04 May, 2016 1 commit
    • pq's avatar
      Literals get type annotations. · bcede8df
      pq authored
      As per the recent fix to the `always_specify_types` lint (https://github.com/dart-lang/linter/issues/199), literal maps and lists are now expected to be explicitly typed.
      
      Running that lint on the repo identifies quite a few spots to update.  This focuses on `flutter_driver` and `flutter_sprites` (somewhat arbitrarily) but the changes are fairly representative.
      
      Note there are a number of places where I made a quick judgement on how specific to make the types.  Feedback on those is welcome.  (Especially as we move forward with more.)
      bcede8df
  4. 14 Mar, 2016 1 commit
  5. 10 Mar, 2016 1 commit
  6. 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
  7. 01 Mar, 2016 1 commit
  8. 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