import { waitForAsync, ComponentFixture, TestBed } from '@angular/core/testing'; import { StoreModule } from '@ngrx/store'; import { RootReducer } from '../../../store/rtl.reducers'; import { LNDReducer } from '../../../lnd/store/lnd.reducers'; import { CLNReducer } from '../../../cln/store/cln.reducers'; import { ECLReducer } from '../../../eclair/store/ecl.reducers'; import { CommonService } from '../../../shared/services/common.service'; import { LoggerService } from '../../../shared/services/logger.service'; import { CLNForwardingHistoryComponent } from './forwarding-history.component'; import { mockDataService, mockLoggerService } from '../../../shared/test-helpers/mock-services'; import { SharedModule } from '../../../shared/shared.module'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { DataService } from '../../../shared/services/data.service'; import { RouterTestingModule } from '@angular/router/testing'; describe('CLNForwardingHistoryComponent', () => { let component: CLNForwardingHistoryComponent; let fixture: ComponentFixture; beforeEach(waitForAsync(() => { TestBed.configureTestingModule({ declarations: [CLNForwardingHistoryComponent], imports: [ BrowserAnimationsModule, RouterTestingModule, SharedModule, StoreModule.forRoot({ root: RootReducer, lnd: LNDReducer, cln: CLNReducer, ecl: ECLReducer }) ], providers: [ CommonService, { provide: LoggerService, useClass: mockLoggerService }, { provide: DataService, useClass: mockDataService } ] }). compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(CLNForwardingHistoryComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); afterEach(() => { TestBed.resetTestingModule(); }); });