I'm new to angular testing and I want to create tests for my service.
The problem is my service (foo) is inject another service (bar) in its constructor.
So I should create a mock to bar? mock every function inside bar? if so, I need to do that for every package I import? write my own functions as mock?