I write some integration tests for my Flutter application and I need to execute some shell commands on my local machine during testing.
I know that I can execute these commands with Process.run(), but during the integration tests this command is executed on my android phone instead of my local machine.
Is there any way to run a command on my local machine during my integration test?