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