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