I\'m testing a component which subscribe router params. Every test pass and everything works fine. But if I look in the console, I can see an error:
Error
In my case destroying the component after each test solved the problem. So you could try adding this to your describe function:
afterEach(() => { fixture.destroy(); })