import { waitForAsync, ComponentFixture, TestBed } from '@angular/core/testing'; import { SharedModule } from '../../../shared/shared.module'; import { CLFeeInfoComponent } from './fee-info.component'; describe('CLFeeInfoComponent', () => { let component: CLFeeInfoComponent; let fixture: ComponentFixture; beforeEach(waitForAsync(() => { TestBed.configureTestingModule({ declarations: [CLFeeInfoComponent], imports: [SharedModule] }). compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(CLFeeInfoComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); afterEach(() => { TestBed.resetTestingModule(); }); });