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
Another thing which has helped me as well and solved a few of my problems was to add the statement to destroy the fixture after each test
afterEach(() => { fixture.destroy(); });