So I needed to do this work, the circuits were also installed in TestBed.configureTestingModule - which is not a separate module file, but part of the app.component.spec.ts file. Thanks to @camaron for the tip. I really think the docs may be clearer on this.
, , , . app.component.spec.ts.
import { TestBed, async } from '@angular/core/testing';
import { AppComponent } from './../app.component';
import { RouterTestingModule } from '@angular/router/testing';
import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
describe('AppComponent', () => {
beforeEach(() => {
TestBed.configureTestingModule({
schemas: [ CUSTOM_ELEMENTS_SCHEMA ],
declarations: [AppComponent],
imports: [RouterTestingModule]
});
TestBed.compileComponents();
});