When running my unit tests, from time to time, even if they pass, at the end of all the tests running, I will get the following error.
On my Jenkins CI build running
In my case changing the import from Observable to Rx Library has fixed the issue
Observable
Rx
before:
import { Observable } from 'rxjs/Observable';
After:
import { Observable } from 'rxjs/Rx';