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