import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { AppListComponent } from './app-list.component'; describe('AppListComponent', () => { let component: AppListComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ AppListComponent ] }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(AppListComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });