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