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