- 28 Aug, 2018 1 commit
-
-
Ian Hickson authored
-
- 18 Aug, 2018 1 commit
-
-
Ian Hickson authored
* Fixes resulting from audit of issues links I looked at every link to GitHub in our repo. For cases where we had a TODO that was waiting for a bug to be fixed, and the bug has now been fixed, I applied the pending change. For cases where the link was out of date, I updated the link. * Update run_test.dart skip this test again since it failed on linux and macos bots
-
- 16 Aug, 2018 1 commit
-
-
xster authored
-
- 15 Aug, 2018 2 commits
-
-
Jonah Williams authored
\
-
Ian Hickson authored
* Upgrade everything except matcher. * Roll matcher (and test) * Adjust tests that depend on flutter:test directly to depend on a shim * Require use of package:test shim and remove other references to package:test
-
- 14 Aug, 2018 1 commit
-
-
Jonah Williams authored
-
- 07 Aug, 2018 1 commit
-
-
liyuqian authored
* Roll engine to 7f083e54fe75 7f083e54f Don't implicitly fall through in switch statement (flutter/engine#5964) c7ce6dd69 Apply translation to accessibility tree when in landscape (flutter/engine#5950) aef94b73d Reland "Updated background execution implementation for Android" (flutter/engine#5954) 3421bca7a Roll src/third_party/skia 36216fb0acbc..177742435e52 (15 commits) (flutter/engine#5963) 9d1e67399 Temporarily add travis/analyze.sh back for Chrome bot (flutter/engine#5961) 4386afdaa Roll src/third_party/skia e6d0618f677c..36216fb0acbc (11 commits) (flutter/engine#5960) 7cef3da03 Roll src/third_party/skia 01d9a344b575..e6d0618f677c (1 commits) (flutter/engine#5958) ad82cb154 Roll src/third_party/skia fdf05f4ff4e9..01d9a344b575 (1 commits) (flutter/engine#5957) 6ea410cfe Revert "Roll Dart to 17b54c76ce9b945c6f013ad08c19268409c0694a (flutter/engine#5955)" (#5956) f20c58f65 Roll Dart to 17b54c76ce9b945c6f013ad08c19268409c0694a (flutter/engine#5955) ed1938e99 Roll src/third_party/skia 641ac7daa81c..fdf05f4ff4e9 (3 commits) (flutter/engine#5953) 5f04e00d7 Remove travis directory (flutter/engine#5935) 5442c0a7d Revert "Updated background execution implementation for Android" (flutter/engine#5949) a5215ce50 Add hasImplicitScrolling SemanticFlag and support in Android bridge (flutter/engine#5941) 4681351af Roll src/third_party/skia 6e487e67a3f3..641ac7daa81c (16 commits) (flutter/engine#5948) bc885f319 Updated background execution implementation for Android 5770cbd2a Roll src/third_party/skia 12fb9cfeee07..6e487e67a3f3 (8 commits) (flutter/engine#5946) f4464a8d9 Roll src/third_party/skia 2e77f54f46e8..12fb9cfeee07 (1 commits) (flutter/engine#5945) c6baaaf75 Replace acquire+release thread annotation with excludes (flutter/engine#5944) 63ede2e35 Roll src/third_party/skia 59aabbcf3b0d..2e77f54f46e8 (1 commits) (flutter/engine#5943) 97aea093e Roll src/third_party/skia 71fe8baccc01..59aabbcf3b0d (1 commits) (flutter/engine#5942) aaf4a9a24 Roll src/third_party/skia 4c3b63e289c5..71fe8baccc01 (3 commits) (flutter/engine#5940) * Sync framework changes
-
- 06 Aug, 2018 1 commit
-
-
Jonah Williams authored
-
- 02 Aug, 2018 3 commits
-
-
Jonah Williams authored
-
Jonah Williams authored
-
Alexandre Ardhuin authored
-
- 01 Aug, 2018 1 commit
-
-
Jonah Williams authored
-
- 27 Jul, 2018 1 commit
-
-
Todd Volkert authored
It was causing problems rolling Flutter into Fuchsia
-
- 23 Jul, 2018 1 commit
-
-
Alexandre Ardhuin authored
* re-enable lint unnecessary_const * remove trailling whitespaces * remove unnecessary const (after merge)
-
- 21 Jul, 2018 1 commit
-
-
Jonah Williams authored
-
- 20 Jul, 2018 1 commit
-
-
Greg Spencer authored
-
- 16 Jul, 2018 2 commits
-
-
Ian Hickson authored
This reverts commit cc1cf13e.
-
Alexandre Ardhuin authored
-
- 13 Jul, 2018 2 commits
-
-
Jonah Williams authored
-
Jonah Williams authored
-
- 09 Jul, 2018 1 commit
-
-
Jonah Williams authored
-
- 02 Jul, 2018 1 commit
-
-
matthew-carroll authored
* Support all keyboard actions. (#11344)
-
- 26 Jun, 2018 1 commit
-
-
Ian Hickson authored
-
- 20 Jun, 2018 1 commit
-
-
Ian Hickson authored
The new matcher package deprecates isInstanceOf which seems eggregious.
-
- 19 Jun, 2018 1 commit
-
-
Greg Spencer authored
-
- 05 Jun, 2018 1 commit
-
-
Alexandre Ardhuin authored
-
- 18 May, 2018 1 commit
-
-
Todd Volkert authored
This allows test environments other than `flutter test` to have a hook into the test exception reporting. Some test environments, for example, don't just dump error details to the console, but rather require them to be reported to a separate server.
-
- 10 May, 2018 1 commit
-
-
Devon Carew authored
* no longer use the analyzer version shipped in the sdk * update all package versions to the latest
-
- 09 May, 2018 1 commit
-
-
Todd Volkert authored
-
- 08 May, 2018 1 commit
-
-
Todd Volkert authored
Some APIs (such as the ones in package:test) assume you're running in a child zone of the test zone by attempting to extract information from the zone values. When we run runAsync() in the root zone, those zone values are lost, and such API methods don't work. The solution is to run in a child zone, but with a specification that says to use the Root zone for task scheduling (both timers and microtakss).
-
- 07 May, 2018 1 commit
-
-
Todd Volkert authored
1. Make goldenFileComparator getter return `null` if it's set to the uninitialized comparator, which matches the behavior of the setter (it sets it to the uninitialized comparator if the caller specifies `null`). 2. Make the uninitialized comparator return trivial success (and print a message) when asked to compare as opposed to throwing. This ensures that the comparator will play nicely with live widget bindings 3. Augment documentation 4. Add assert that test doesn't modify the value of `autoUpdateGoldenFiles`
-
- 04 May, 2018 1 commit
-
-
Todd Volkert authored
This will allow external tools that wrap our test harness to share the code that generates the test bootstrap. This change exposed an issue whereby the LocalGoldenFileComparator was being too strict in its URI handling, so this changes relaxes that constraint as well (and adds associated tests).
-
- 03 May, 2018 1 commit
-
-
Todd Volkert authored
In order to avoid checking binaries into flutter/flutter, this comparator can be used to retrieve golden files from a sibling flutter/goldens repository. https://github.com/flutter/flutter/issues/16859
-
- 01 May, 2018 1 commit
-
-
Todd Volkert authored
This enables support for a `flutter_test_config.dart` configuration file, which will be discovered and handed the responsibility of running the test file (thus allowing it to run pre-test setup on a project level). https://github.com/flutter/flutter/issues/16859
-
- 30 Apr, 2018 2 commits
-
-
Todd Volkert authored
* Add a `matchesGoldenFile()` async matcher that will match a finder's widget's rasterized image against a golden file. * Add support for pluggable image comparison backends * Add a default backend that does simplistic PNG byte comparison on locally stored golden files. * Add support for `flutter test --update-goldens`, which will treat the rasterized image bytes produced during the test as the new golden bytes and update the golden file accordingly Still TODO: * Add support for the `flutter_test_config.dart` test config hook * Utilize `flutter_test_config.dart` in `packages/flutter/test` to install a backend that retrieves golden files from a dedicated `flutter/goldens` repo https://github.com/flutter/flutter/issues/16859
-
- 28 Apr, 2018 2 commits
-
-
Todd Volkert authored
This will allow callers to run real async code within a widget test. https://github.com/flutter/flutter/issues/16859
-
Todd Volkert authored
* Wrap `expectLater()` in flutter_tester so that callers can wait for the matcher to complete in their tests https://github.com/flutter/flutter/issues/16859
-
- 19 Mar, 2018 1 commit
-
-
xster authored
* Add a way to generically go back on both Material and Cupertino scaffold pages * review * lint * review * Fix text assert text
-
- 02 Mar, 2018 1 commit
-
-
Yegor authored
Document missing value types supported by `within`. Add missing tests. Simplify _sizeDistance implementation.
-