import { TestBed } from '@angular/core/testing'; /* tslint:disable ordered-imports */ import { RouterModule, provideRoutes } from '@angular/router'; import { RouterTestingModule } from '@angular/router/testing'; import { AppComponent } from './app.component'; describe('App', () => { beforeEach(() => { TestBed.configureTestingModule({ declarations: [ AppComponent ], imports: [ RouterModule, RouterTestingModule ], providers: [ provideRoutes([]) ] }); }); it('should work', () => { const fixture = TestBed.createComponent(AppComponent); expect(fixture.componentInstance instanceof AppComponent).toBe(true, 'should create AppComponent'); }); });