We are having to declare entryComponents in tests after upgrading to A9; the documentation indicates this should not be necessary ``` @NgModule({ entryComponents: [ xyz, ] }) export class ImportModule {} ``` ``` beforeEach(async(() => { TestBed.configureTestingModule({ imports: [RouterTestingModule, ImportModule], ... ```