Currently, I am configuring $httpBackend
to simulate fake API routes while our team of API developers is building them out. However, I am facing an issue where I have to place all the $httpBackend
configurations within my run
block. This leads to a situation where my run
block becomes quite lengthy. I am exploring options to break these configurations into separate files, perhaps by using multiple run
blocks or even considering a grunt task to consolidate them into a single run
file.