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