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