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