1. 21 Oct, 2018 1 commit
  2. 16 Oct, 2018 1 commit
  3. 08 Oct, 2018 1 commit
  4. 04 Oct, 2018 1 commit
  5. 01 Oct, 2018 2 commits
  6. 14 Sep, 2018 1 commit
  7. 12 Sep, 2018 1 commit
  8. 06 Aug, 2018 1 commit
  9. 02 Aug, 2018 3 commits
  10. 27 Jul, 2018 1 commit
  11. 23 Jul, 2018 1 commit
  12. 20 Jul, 2018 2 commits
  13. 16 Jul, 2018 2 commits
  14. 09 Jul, 2018 1 commit
  15. 13 Jun, 2018 1 commit
    • Chris Bracken's avatar
      Revert elimination of Dart 1 (#18460) · 2ae48845
      Chris Bracken authored
      fuchsia_tester.dart still assumes Dart 1. Previously, it ran tests directly
      from source, flutter_platform.dart automatically runs a kernel compile when
      operating in Dart 2 mode, but this assumes a functional Dart SDK is available
      in the artifacts directly, and fuchsia_tester.dart mocks out the artifacts
      directory with an empty temp dir.
      
      Remaining work is:
      1. Get the frontend server building as a dependency on Fuchsia.
      2. Patch fuchsia_tester.dart to use a valid Dart SDK and frontend server.
      
      This also reverts migration to Dart 2 typedef syntax.
      
      This reverts commit 6c56bb24. (#18362)
      This reverts commit 3daebd05. (#18316)
      2ae48845
  16. 11 Jun, 2018 1 commit
    • Greg Spencer's avatar
      Update typedef syntax to use Function notation and turn on lint for old notation. (#18362) · 6c56bb24
      Greg Spencer authored
      Now that Dart 1 is turned off, reapplying my change to turn on the prefer_generic_function_type_aliases analysis option, and fix all the typedefs to Dart 2 preferred syntax.
      
      Also eliminated the unused analysis_options_repo.yaml file and turned on public_member_api_docs in analysys_options.yaml.
      
      No logic changes, just changing the typedef syntax for all typedefs, and updating analysis options.
      6c56bb24
  17. 08 Jun, 2018 1 commit
  18. 05 Jun, 2018 1 commit
  19. 30 May, 2018 2 commits
  20. 18 May, 2018 1 commit
  21. 15 May, 2018 1 commit
  22. 04 May, 2018 2 commits
  23. 03 May, 2018 1 commit
    • Andrew Davies's avatar
      [frdp] Adds DartVM events/driver support. (#17170) · 5d590afa
      Andrew Davies authored
      This change adds Dart VM event support (listening for when a VM starts/stops by using a periodic heartbeat).
      
      This also adds support to connect to a specific `IsolateRef` through the flutter driver, so that when an application spawns, it can immediately be driven (as shown in included example code).
      5d590afa
  24. 19 Apr, 2018 1 commit
    • Todd Volkert's avatar
      Add a few timeouts to FlutterDriver.connect() (#16762) · 9da0ec27
      Todd Volkert authored
      We're seeing occasional test timeouts trying to call `FlutterDriver.connect()`.
      Unfortunately, when the test is timed out at the test runner level, you don't
      get a meaningful test failure or stack trace of where the timeout occurrred.
      Your test harness also doesn't get to clean up, which can include things like
      saving the device logs to see what was going on in the device.
      
      Thus, this change adds timeouts in the places where we've most
      commonly observed hangs during tests.
      9da0ec27
  25. 27 Mar, 2018 1 commit
  26. 12 Mar, 2018 1 commit
  27. 07 Mar, 2018 1 commit
    • Josh Soref's avatar
      Spelling (#15229) · c5a5945e
      Josh Soref authored
      * spelling: accommodate
      
      * spelling: allotted
      
      * spelling: anonymous
      
      * spelling: artificial
      
      * spelling: associated
      
      * spelling: asset
      
      * spelling: button
      
      * spelling: canvas
      
      * spelling: compatibility
      
      * spelling: coverage
      
      * spelling: condition
      
      * spelling: decoration
      
      * spelling: deferring
      
      * spelling: diameter
      
      * spelling: direction
      
      * spelling: displacement
      
      * spelling: dropdown
      
      * spelling: needing
      
      * spelling: environment
      
      * spelling: exited
      
      * spelling: expansion
      
      * spelling: explore
      
      * spelling: families
      
      * spelling: horizontal
      
      * spelling: increment
      
      * spelling: indices
      
      * spelling: internationalization
      
      * spelling: labrador
      
      * spelling: localizations
      
      * spelling: midflight
      
      * spelling: milliseconds
      
      * spelling: minimum
      
      * spelling: multiple
      
      * spelling: multiplication
      
      * spelling: navigator
      
      * spelling: overridden
      
      * spelling: package
      
      * spelling: performance
      
      * spelling: platform
      
      * spelling: porsche
      
      * spelling: position
      
      * spelling: preceded
      
      * spelling: precede
      
      * spelling: precedence
      
      * spelling: print
      
      * spelling: property
      
      * spelling: readily
      
      * spelling: reproducibility
      
      * spelling: rounded
      
      * spelling: scroll
      
      * spelling: separate
      
      * spelling: separator
      
      * spelling: services
      
      * spelling: specific
      
      * spelling: specify
      
      * spelling: synchronously
      
      * spelling: through
      
      * spelling: timeout
      
      * spelling: triangle
      
      * spelling: trivial
      
      * spelling: unusual
      
      * spelling: then
      
      * spelling: vertically
      
      * spelling: visible
      
      * spelling: visited
      
      * spelling: voice
      c5a5945e
  28. 05 Feb, 2018 1 commit
  29. 07 Dec, 2017 3 commits
  30. 23 Nov, 2017 1 commit
    • Chris Bracken's avatar
      Reorganise flutter driver implementation sources (#13163) · cf37a472
      Chris Bracken authored
      This patch reorganises flutter_driver's lib/src directory into three
      subdirectories:
      
      * driver: sources transitively imported/exported by flutter_driver.dart,
        which defines the API used by driver tests executed on the host machine.
      
      * extension: sources transitively imported/exported by
        driver_extension.dart, which defines the API used to instrument a
        Flutter app running on the target device for use with a driver test.
      
      * common: sources common to both driver and extension code.
      
      This makes rolling Flutter into repositories that use Bazel (or
      Bazel-like build systems) significantly more robust, due to the simpler
      glob patterns involved.
      cf37a472
  31. 22 Nov, 2017 1 commit