flutter/dev/integration_tests
LongCatIsLooong ec47148036
[Windows_android channels_integration_test] Column -> ListView (#134836)
This should fix https://github.com/flutter/flutter/issues/134636. 

The column can get really tall, especially when there's line wrapping. This is the layout on a tablet, so on a motor g4 this column is likely going to overflow.

```
     RenderParagraph#66251 relayoutBoundary=up3
│ creator: RichText ← Text-[<'status'>] ← Column ←
│   FutureBuilder<TestStepResult> ← Padding ←
│   KeyedSubtree-[GlobalKey#0f29e] ← _BodyBuilder ← MediaQuery ←
│   LayoutId-[<_ScaffoldSlot.body>] ← CustomMultiChildLayout ←
│   _ActionsScope ← Actions ← ⋯
|  parentData: offset=Offset(0.0, 600.0); flex=null; fit=null
```

![flutter_01](https://github.com/flutter/flutter/assets/31859944/5e700d21-3c5e-4990-bfb5-153f44f1c517)
2023-09-15 19:53:24 +00:00
..
abstract_method_smoke_test Bump gradle heap size limit in *everywhere* (#134665) 2023-09-13 10:36:24 -07:00
android_custom_host_app Bump gradle heap size limit in *everywhere* (#134665) 2023-09-13 10:36:24 -07:00
android_embedding_v2_smoke_test Bump gradle heap size limit in *everywhere* (#134665) 2023-09-13 10:36:24 -07:00
android_host_app/.gradle Reland "Branch out android platform view perf testing #60238" 2nd time (#61748) 2020-07-22 18:36:11 -07:00
android_host_app_v2_embedding Bump gradle heap size limit in *everywhere* (#134665) 2023-09-13 10:36:24 -07:00
android_module_host_with_custom_build_v2_embedding/app/src/main/java/io/flutter/addtoapp Fix package declarations for add-to-app integration tests (#77648) 2021-03-30 14:19:02 -07:00
android_semantics_testing Bump gradle heap size limit in *everywhere* (#134665) 2023-09-13 10:36:24 -07:00
android_views Bump gradle heap size limit in *everywhere* (#134665) 2023-09-13 10:36:24 -07:00
channels [Windows_android channels_integration_test] Column -> ListView (#134836) 2023-09-15 19:53:24 +00:00
deferred_components_test Bump gradle heap size limit in *everywhere* (#134665) 2023-09-13 10:36:24 -07:00
external_ui Bump gradle heap size limit in *everywhere* (#134665) 2023-09-13 10:36:24 -07:00
flavors Bump gradle heap size limit in *everywhere* (#134665) 2023-09-13 10:36:24 -07:00
flutter_gallery Enable private field promotion for dev (#134480) 2023-09-12 18:29:00 +00:00
gradle_deprecated_settings Bump gradle heap size limit in *everywhere* (#134665) 2023-09-13 10:36:24 -07:00
hybrid_android_views Bump gradle heap size limit in *everywhere* (#134665) 2023-09-13 10:36:24 -07:00
ios_add2app_life_cycle Enable private field promotion for dev (#134480) 2023-09-12 18:29:00 +00:00
ios_app_with_extensions Enable private field promotion for dev (#134480) 2023-09-12 18:29:00 +00:00
ios_host_app Native assets support for MacOS and iOS (#130494) 2023-09-10 08:07:13 +00:00
ios_host_app_swift Set template and migrate apps to iOS 11 minimum (#101963) 2022-04-15 11:34:08 -07:00
ios_platform_view_tests Enable private field promotion for dev (#134480) 2023-09-12 18:29:00 +00:00
module_host_with_custom_build/.gradle Reland "Branch out android platform view perf testing #60238" 2nd time (#61748) 2020-07-22 18:36:11 -07:00
module_host_with_custom_build_v2_embedding Bump gradle heap size limit in *everywhere* (#134665) 2023-09-13 10:36:24 -07:00
non_nullable Bump gradle heap size limit in *everywhere* (#134665) 2023-09-13 10:36:24 -07:00
platform_interaction Bump gradle heap size limit in *everywhere* (#134665) 2023-09-13 10:36:24 -07:00
release_smoke_test Bump gradle heap size limit in *everywhere* (#134665) 2023-09-13 10:36:24 -07:00
spell_check Bump gradle heap size limit in *everywhere* (#134665) 2023-09-13 10:36:24 -07:00
ui Bump gradle heap size limit in *everywhere* (#134665) 2023-09-13 10:36:24 -07:00
web [web] provide serviceWorkerVersion to the getNewServiceWorker function (#131240) 2023-09-14 22:17:08 +00:00
web_compile_tests Enable private field promotion for dev (#134480) 2023-09-12 18:29:00 +00:00
web_e2e_tests Enable private field promotion for dev (#134480) 2023-09-12 18:29:00 +00:00
wide_gamut_test Enable private field promotion for dev (#134480) 2023-09-12 18:29:00 +00:00
windows_startup_test Enable private field promotion for dev (#134480) 2023-09-12 18:29:00 +00:00
README.md Added a more generous timeout period for the keyboard animation. (#62628) 2020-08-04 08:14:17 -07:00

Automated Flutter integration test suites

Each suite consists of either a complete Flutter app and a flutter_driver specification that drives tests from the UI, or a native app that is meant to integrate with Flutter for testing.

Intended for use with devicelab tests.

If you want to run a driver test locally, to debug a problem with a test, you can use this command from the appropriate subdirectory:

flutter drive -t <test> --driver <driver>

For example:

flutter drive -t lib/keyboard_resize.dart --driver test_driver/keyboard_resize_test.dart