Hello! I'm in the process of creating integration ...
# multiplatform
c
Hello! I'm in the process of creating integration tests for my Compose Multiplatform project (iOS and Android targets). My codebase was previously native Android and I've converted it over to CMP so that it works on iOS. The tests that I have written work on my physical Android devices with
./gradlew :composeApp:connectedAndroidTest
But attempts to make the tests run on a physical iOS device don't seem to be working and it instead just runs the tests as they target a simulator instead of running on the connected iOS device. Is physical integration testing supported for iOS targets with the common testing library? My tests need to be run on physical devices, Any direction with this would be greatly appreciated. Thank you.