Most Angular tutorials I have seen inject the HTTP service into other more specialized services. I'm planning to create a specialized service and inheriting from the HTTP service.
However, I'm concerned about testability because I think that, if I inject it, my specialized service will be easier to test.
My question is - is it advisable to inherit the HTTP service from a general point of view and for testability purposes?