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