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