I've got a route that I'd like to do some unit testing on at various
stages. It does a few splits, sets some headers, etc. The problem is that
there's no actual endpoint for me to intercept until the very end, but I'd
like to do some verification midway through.

I suppose I could add arbitrary mock endpoints in key spots to use as
interceptSendTo hooks, but I'd rather not pollute my route with test
scaffolding like that. I've also tried using vanilla intercept().when()
calls but those end up casting too wide a net to be useful (or don't offer
a straightforward way for to intercept where and only where I want to).

Is there a better alternative to solving this problem than injecting
arbitrary mocks into my production routes?

Jeff

Reply via email to