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 { LoggerService } from '../../../../shared/services/logger.service'; import { SharedModule } from '../../../../shared/shared.module'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { CLNNodeLookupComponent } from './node-lookup.component'; describe('CLNNodeLookupComponent', () => { let component: CLNNodeLookupComponent; let fixture: ComponentFixture; beforeEach(waitForAsync(() => { TestBed.configureTestingModule({ declarations: [CLNNodeLookupComponent], imports: [ SharedModule, BrowserAnimationsModule, StoreModule.forRoot({ root: RootReducer, lnd: LNDReducer, cln: CLNReducer, ecl: ECLReducer }) ], providers: [LoggerService] }). compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(CLNNodeLookupComponent); component = fixture.componentInstance; component.lookupResult = {}; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); afterEach(() => { TestBed.resetTestingModule(); }); });