Is there a way to run multiple UI tests in Flutter when the tests are in different files.
Currently, when one wants to run a test that is called differently than main_test.dart
then target
parameter is used:
flutter drive --target=./test_driver/feature_one_test.dart
Is there a way all the tests that are in given folder? e.g.:
flutter drive --target=./test_driver/*
Cheers!