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