I plan to run the flutter integration tests across different iOS/Android Simulators/Emulators in parallel.
As per documentation, we can run the flutter integration tests across the device using:
flutter test integration_test/foo_test.dart -d <DEVICE_ID>
My concern is:
Is there a way to build the flutter binaries only like:
xcodebuild build-for-testing
Is there way to split the integration tests across multiple simulators in parallel?