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