From e0fe2830cb99430fec9d2541f7b7fcfd24126fca Mon Sep 17 00:00:00 2001 From: Abdullah Deshmukh Date: Tue, 11 Jan 2022 11:57:52 +0530 Subject: [PATCH] Update README.md (#986) --- testing_app/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/testing_app/README.md b/testing_app/README.md index 8d5459e36..8366759fe 100644 --- a/testing_app/README.md +++ b/testing_app/README.md @@ -28,7 +28,8 @@ The Flutter SDK can run unit tests and widget tests in a virtual machine, withou - Widget Tests: - Run `flutter run test/` - Integration Tests: - - Run `flutter drive --driver=integration_test/driver.dart --target=integration_test/app_test.dart` + - Run `flutter test integration_test` to run all the integration tests with a single command. + - Alternatively, you can run `flutter drive --driver=integration_test/driver.dart --target=integration_test/app_test.dart` to run them separately. You can also provide custom driver files with this command. - Performance Tests: - Run `flutter drive --driver=integration_test/perf_driver.dart --target=integration_test/perf_test.dart --profile --trace-startup` - Using a physical device and running performance tests in profile mode is recommended.