- 21 Dec, 2022 1 commit
-
-
Michael Goderbauer authored
-
- 02 Aug, 2021 1 commit
-
-
Darren Austin authored
-
- 16 Mar, 2021 2 commits
-
-
Ian Hickson authored
-
Zachary Anderson authored
This reverts commit 0cbe5975.
-
- 15 Mar, 2021 1 commit
-
-
Ian Hickson authored
-
- 01 Dec, 2020 1 commit
-
-
Jonah Williams authored
-
- 18 Nov, 2020 1 commit
-
-
Jonah Williams authored
-
- 05 Oct, 2020 1 commit
-
-
Tong Mu authored
* Migrate
-
- 19 Jun, 2020 1 commit
-
-
Jonah Williams authored
Fixes #59718 Update all versions, specifically dwds which has a hot restart fix
-
- 11 Jun, 2020 1 commit
-
-
Alexandre Ardhuin authored
* add language version 2.8 in packages/flutter * enable non-nullable analyzer flag
-
- 19 Feb, 2020 1 commit
-
-
Martin Kustermann authored
Weaken stack-trace based tests to allow auto-roll of new engine which will change the format (#51047) Follow-up PR will restore those tests with new expectations: https://github.com/flutter/flutter/pull/50760
-
- 01 Feb, 2020 1 commit
-
-
Dan Field authored
-
- 31 Jan, 2020 2 commits
-
-
Shi-Hao Hong authored
This reverts commit 46ccd086.
-
Dan Field authored
-
- 27 Nov, 2019 1 commit
-
-
Ian Hickson authored
* Update project.pbxproj files to say Flutter rather than Chromium Also, the templates now have an empty organization so that we don't cause people to give their apps a Flutter copyright. * Update the copyright notice checker to require a standard notice on all files * Update copyrights on Dart files. (This was a mechanical commit.) * Fix weird license headers on Dart files that deviate from our conventions; relicense Shrine. Some were already marked "The Flutter Authors", not clear why. Their dates have been normalized. Some were missing the blank line after the license. Some were randomly different in trivial ways for no apparent reason (e.g. missing the trailing period). * Clean up the copyrights in non-Dart files. (Manual edits.) Also, make sure templates don't have copyrights. * Fix some more ORGANIZATIONNAMEs
-
- 15 Nov, 2019 1 commit
-
-
Ben Konyi authored
Fixes failures in some tests which used regular expressions to compare stack traces which had instances of "<asynchronous suspension>".
-
- 07 Jun, 2019 1 commit
-
-
Jonah Williams authored
-
- 06 Nov, 2018 3 commits
-
-
Jonah Williams authored
-
Jonah Williams authored
This reverts commit 71e9bd6f.
-
Jonah Williams authored
-
- 21 Aug, 2018 1 commit
-
-
Ian Hickson authored
Fixes the pattern for some TODOs to match our style guide. (Also, a couple of minor code order fixes.)
-
- 15 Aug, 2018 1 commit
-
-
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
-
- 16 Mar, 2018 1 commit
-
-
Vyacheslav Egorov authored
-
- 12 Feb, 2018 1 commit
-
-
Vyacheslav Egorov authored
Dart 2 applies core library patches during the build, so there is only a single dart:async library.
-
- 26 Jan, 2018 1 commit
-
-
Vyacheslav Egorov authored
* Unpin package:test and upgrade packages * Update packages/flutter/test/foundation/stack_trace_test.dart * Also add packages/flutter_tools/test/data/asset_test/font/.dartignore to ensure that update-packages --force-upgrade does not crash.
-
- 17 Jan, 2018 1 commit
-
-
Ian Hickson authored
* Escape path separator in regexps * Update platform_helper.dart * Update stack_trace_test.dart * Update stack_trace_test.dart
-
- 16 Jan, 2018 1 commit
-
-
Ian Hickson authored
Seems like we don't yet run the flutter tests on Windows, but we're close to being able to. This makes some minor changes to make that more possible: - fix the stack parsing code to support Windows paths - fix the tests for the stack error handling code to handle Windows paths - skip some tests that rely on Ahem font metrics
-
- 04 Mar, 2017 1 commit
-
-
Chris Bracken authored
-
- 17 Feb, 2017 1 commit
-
-
Ryan Macnak authored
Update stack_trace_test.dart for changes to the naming of async body functions.
-
- 15 Feb, 2017 1 commit
-
-
Ryan Macnak authored
* Roll engine to b64c88766dbd83bf4bab1cd1cd1757139b6cdb74. Picks up changes to include inlined frames and line numbers in AOT stack traces. * Adjust/weaken stack_trace_test.dart to pass in the face of async causal stack traces (Issue #8128).
-
- 16 May, 2016 1 commit
-
-
Ian Hickson authored
This makes it possible to substitute 'flutter run' for 'flutter test' and actually watch a test run on a device. For any test that depends on flutter_test: 1. Remove any import of 'package:test/test.dart'. 2. Replace `testWidgets('...', (WidgetTester tester) {` with `testWidgets('...', (WidgetTester tester) async {` 3. Add an "await" in front of calls to any of the following: * tap() * tapAt() * fling() * flingFrom() * scroll() * scrollAt() * pump() * pumpWidget() 4. Replace any calls to `tester.flushMicrotasks()` with calls to `await tester.idle()`. There's a guarding API that you can use, if you have particularly complicated tests, to get better error messages. Search for TestAsyncUtils.
-