import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; import { BillSettlementReportComponent } from './bill-settlement-report.component'; describe('BillSettlementReportComponent', () => { let component: BillSettlementReportComponent; let fixture: ComponentFixture; beforeEach( waitForAsync(() => { TestBed.configureTestingModule({ declarations: [BillSettlementReportComponent], }).compileComponents(); }), ); beforeEach(() => { fixture = TestBed.createComponent(BillSettlementReportComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });