Mocking dependencies in Angular
It is quite common to have a component or a service that depends on another service. For example, a Directory service may need to get data from a Database service.
Here is an example of such a Directory service:
import {Injectable} from '@angular/c...
aliasger.dev4 min read