I'm a rails developer. I test locally and deploy to Heroku.
Often I have a stituation that can't really be tested locally. For example the HireFire gem that dynamically spins up workers when neeed. I cannot test this locally, and it sometimes stops working due to changes or configuration adjustments.
There a number of things like this. I feel that I really want to be testing more than I can. Maybe I should be running my tests or separate tests on Heroku. But I don't think this is recommended or even possible.
How do I deal with this situation?