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