1. 18 Sep, 2019 1 commit
  2. 17 Sep, 2019 3 commits
  3. 16 Sep, 2019 1 commit
  4. 13 Sep, 2019 1 commit
  5. 11 Sep, 2019 1 commit
  6. 06 Sep, 2019 2 commits
  7. 05 Sep, 2019 2 commits
  8. 03 Sep, 2019 1 commit
  9. 02 Sep, 2019 1 commit
  10. 28 Aug, 2019 1 commit
  11. 27 Aug, 2019 1 commit
  12. 22 Aug, 2019 1 commit
  13. 21 Aug, 2019 1 commit
  14. 20 Aug, 2019 1 commit
    • James D. Lin's avatar
      Instrument pending timers in tests (#37646) · b2f8d3a6
      James D. Lin authored
      Flutter widget tests assert if a test completes with timers still
      pending.  However, it can be hard to diagnose where a pending timer
      came from.  For example, a widget might consume a third-party library
      that internally uses a timer.
      
      I added a FakeAsync.pendingTimersDebugInfo getter to quiver
      (https://github.com/google/quiver-dart/pull/500).  Make flutter_test
      use it.
      
      Additionally modify Flutter's debugPrintStack to take an optional
      StackTrace argument instead of always printing StackTrace.current.
      
      Fixes #4237.
      b2f8d3a6
  15. 19 Aug, 2019 2 commits
  16. 16 Aug, 2019 3 commits
    • Yegor's avatar
      Teach render objects to reuse engine layers (#36402) · 34c69265
      Yegor authored
      Teach Layer and its implementations, RenderObject and its implementations, and PaintingContext to reuse engine layers. The idea is that a concrete RenderObject creates a Layer and holds on to it as long as it needs it (i.e. when it is composited, and the layer type does not change). In return, each Layer object holds on to an EngineLayer and reports it to the engine via addRetained and oldLayer. This allows the Web engine to reuse DOM elements across frames. Without it, each frame drops all previously rendered HTML and regenerates it from scratch.
      34c69265
    • Kate Lovett's avatar
    • Nurhan Turgut's avatar
      Navigator change backup (#38494) · c2e2f093
      Nurhan Turgut authored
      * Broadcasting popRoute and pushRoute methods via SystemChannels.navigation. These messages will be used in flutter_web to detect the route
      
      * Broadcasting popRoute and pushRoute methods via SystemChannels.navigation. These messages will be used in flutter_web to detect the route
      
      * Reverting all unrelated formatting changes.
      
      * Adding unit tests. Adding more comments.
      
      * Changing string method names with constant strings.
      
      * Fixing a constant strings.
      
      * Fixing analyzer error.
      
      * Fixing more white space.
      
      * Changing the method names. Adding comments to the SystemChannels
      
      * Comment and code name fixes
      
      * replacing the comment with reviewer suggestion.
      
      * addinf systemchannels.navigation mock to test bindings
      
      * Adding a new class for sending route change notrifications. The nottifications are only sent on web. This should fix breaking android/ios
      
      * using new class RouteNotificationMessages in navigator
      
      * Fixing analyzer issues.
      
      * fixing cycle dependency
      
      * fixing github analyze error
      
      * dartfmt two new classes. trying to fix anayze errors
      
      * Update route_notification_messages.dart
      
      * trying to fix white space errors
      c2e2f093
  17. 09 Aug, 2019 3 commits
  18. 08 Aug, 2019 1 commit
  19. 07 Aug, 2019 1 commit
  20. 02 Aug, 2019 1 commit
  21. 28 Jul, 2019 1 commit
  22. 19 Jul, 2019 1 commit
  23. 18 Jul, 2019 1 commit
  24. 16 Jul, 2019 1 commit
  25. 12 Jul, 2019 2 commits
    • Kate Lovett's avatar
      Revert "Part 1: Skia Gold Testing (#33688)" (#36094) · 8809f698
      Kate Lovett authored
      This reverts commit eb0b1790.
      Skia Gold post-submit test were failing due to the service account not being found on Cirrus.
      8809f698
    • Kate Lovett's avatar
      Part 1: Skia Gold Testing (#33688) · eb0b1790
      Kate Lovett authored
      * Fresh PR for Gold integration.
      
      * Nits
      
      * WIP
      
      * Artifacts from merge
      
      * Changed some platform dependencies for web, added library prefix notation for Skia Gold test names.
      
      * Updating for CI implementation
      
      * Write out service account
      
      * Writing to skip out
      
      * WIP
      
      * ++
      
      * Fixing depot tools deps
      
      * Windows depot_tools
      
      * Fixing setup scripts
      
      * ++
      
      * depot tools
      
      * ++
      
      * WIP
      
      * Tracing depot_tools clone
      
      * WIP
      
      * ++
      
      * analyzer
      
      * WIP
      
      * chrome typo
      
      * copy artifact
      
      * Working on tests
      
      * Code cleanup
      
      * ++
      
      * Code cleanup, updated tests
      
      * ++ review feedback
      
      * Review
      
      * Analyzer
      
      * Review feedback
      
      * Nits from review
      
      * PRogress
      
      * ++
      
      * Fixing tests
      
      * ++
      
      * Testing repo route
      
      * Just needing documention around new structures.
      
      * cleanup
      
      * Analyzer
      
      * Documentation updates
      
      * Documentation updates
      
      * Cirrus updates
      
      * cirrus nit
      
      * Review feedback
      
      * Review feedback
      
      * Fixing skip comparator
      
      * Fix base directory for Skia Gold case
      
      * ++
      
      * Feedback
      
      * ++
      
      * Fixed uri assertion
      
      * Made GoldensClient abstract, altered SkiaGoldClient constructor
      
      * Analyzer
      eb0b1790
  26. 08 Jul, 2019 1 commit
  27. 02 Jul, 2019 1 commit
  28. 28 Jun, 2019 3 commits
    • Dan Field's avatar
      Always test semantics (#35110) · 3eb40925
      Dan Field authored
      Default `semanticsEnabled` to true for `testWidgets` and fix associated bugs
      3eb40925
    • Tong Mu's avatar
      benchmarkWidgets.semanticsEnabled default false. (#35280) · 94dbdcba
      Tong Mu authored
      In order not to break existing benchmarks.
      94dbdcba
    • David Shuckerow's avatar
      Make it possible to override the FLUTTER_TEST env variable (#34301) · df6e4d48
      David Shuckerow authored
      * Make it possible to override the FLUTTER_TEST env variable without unsetting it.
      
      * Switch to using platform instead of Platform.
      
      * Document the bindings, and introduce tests that initialize multiple WidgetsBindings with different environments.
      
      * Add tests for the flutter platform test.
      
      * Add license headers
      
      * Fix lints
      
      * Remove trailing whitespace
      
      * Respond to Jonahs comments
      
      * Respond to Ians comments
      
      * Mock out the HttpServer in flutter_platform_test
      
      * Mock out the HttpServer in flutter_platform_test
      
      * Explain why we mock out the HttpServer in flutter_platform_test
      df6e4d48