import { ComponentFixture, TestBed } from '@angular/core/testing'; import { AddEntregablesComponent } from './add-entregables.component'; import { ReactiveFormsModule } from '@angular/forms'; import { HttpClientTestingModule } from '@angular/common/http/testing'; describe('AddEntregablesComponent', () => { let component: AddEntregablesComponent; let fixture: ComponentFixture<AddEntregablesComponent>; beforeEach(async () => { await TestBed.configureTestingModule({ declarations: [ AddEntregablesComponent ], imports: [ReactiveFormsModule, HttpClientTestingModule] }) .compileComponents(); fixture = TestBed.createComponent(AddEntregablesComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });