We're following the instructions of running cavy with Expo project.
expo run:ios
cavy run-ios --skipbuild
But the test fail on our CI (GH Actions) with the timeout:
No response from Cavy within 10 minutes.
because the application in the simulator get stuck with the "Should we open in <app_name>" system notification that can only be confirmed with a manual action.

Is there any way to programatically close that system prompt and move on with running the tests?
After doing some experimentation I figured that the prompt does not show up when started with react-native run-ios (which is the default command run by cavy if there is no --skipbuild flag). However this is not our case and we need to work with expo commands like expo start and unfortunately they are triggering that prompt on a fresh simulator instance 😢 .
We're following the instructions of running cavy with Expo project.
But the test fail on our CI (GH Actions) with the timeout:
because the application in the simulator get stuck with the "Should we open in <app_name>" system notification that can only be confirmed with a manual action.
Is there any way to programatically close that system prompt and move on with running the tests?
After doing some experimentation I figured that the prompt does not show up when started with
react-native run-ios(which is the default command run by cavy if there is no--skipbuildflag). However this is not our case and we need to work with expo commands likeexpo startand unfortunately they are triggering that prompt on a fresh simulator instance 😢 .