flutter/packages/integration_test/example
Reid Baker 9376a2ac60
Support minifcation for apps that depend on AGP 8 and integration_test (#127628)
- Set exported proguard rules for consumers of integration_test using AGP 8.0 
- Updated proguard usage in example to test setting custom proguard rules works.

#127388

Documentation for how consumerProguardFiles works. https://developer.android.com/studio/projects/android-library#Considerations

Unknown why we had to use ** instead of matching exactly.
2023-05-26 19:30:44 +00:00
..
android Support minifcation for apps that depend on AGP 8 and integration_test (#127628) 2023-05-26 19:30:44 +00:00
integration_test Fix screenshot testing for flutter web integration_test (#117114) 2022-12-22 21:34:04 +00:00
ios Migrate Xcode projects last version checks to Xcode 14.3 (#125827) 2023-05-02 00:06:33 +00:00
lib Bump min SDK to 2.19.0-0 (#117345) 2022-12-20 00:46:14 +00:00
test_driver Fix screenshot testing for flutter web integration_test (#117114) 2022-12-22 21:34:04 +00:00
web Move package:integration_test to flutter/flutter (#69622) 2020-11-05 17:28:47 -08:00
.gitignore remove ephemeral files (#70818) 2020-11-19 10:03:09 -08:00
pubspec.yaml Upgrade leak_tracker to 5.0.0 (#126367) 2023-05-16 04:39:26 +00:00
README.md Add instructions to integration_test example README (#77090) 2021-03-15 11:13:05 -07:00

integration_test_example

Demonstrates how to use the package:integration_test.

To run integration_test/example_test.dart,

Android / iOS

flutter drive \
  --driver=test_driver/integration_test.dart \
  --target=integration_test/example_test.dart

Web

In one shell, run Chromedriver (download here):

chromedriver --port 8444

Then, in another shell, run flutter drive:

flutter drive \
  --driver=test_driver/integration_test.dart \
  --target=integration_test/example_test.dart \
  -d web-server