2021-08-28 21:03:18 +00:00
|
|
|
import { waitForAsync, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { StoreModule } from '@ngrx/store';
|
2021-12-29 23:08:41 +00:00
|
|
|
import { SharedModule } from '../../../../shared/shared.module';
|
2019-09-07 21:31:32 +00:00
|
|
|
|
2021-12-29 23:08:41 +00:00
|
|
|
import { RootReducer } from '../../../../store/rtl.reducers';
|
|
|
|
import { LNDReducer } from '../../../../lnd/store/lnd.reducers';
|
2022-05-01 17:35:20 +00:00
|
|
|
import { CLNReducer } from '../../../../cln/store/cln.reducers';
|
2021-12-29 23:08:41 +00:00
|
|
|
import { ECLReducer } from '../../../../eclair/store/ecl.reducers';
|
2022-05-01 17:35:20 +00:00
|
|
|
import { CLNChannelLookupComponent } from './channel-lookup.component';
|
2019-09-07 21:31:32 +00:00
|
|
|
|
2022-05-01 17:35:20 +00:00
|
|
|
describe('CLNChannelLookupComponent', () => {
|
|
|
|
let component: CLNChannelLookupComponent;
|
|
|
|
let fixture: ComponentFixture<CLNChannelLookupComponent>;
|
2019-09-07 21:31:32 +00:00
|
|
|
|
2021-08-28 21:03:18 +00:00
|
|
|
beforeEach(waitForAsync(() => {
|
2019-09-07 21:31:32 +00:00
|
|
|
TestBed.configureTestingModule({
|
2022-05-01 17:35:20 +00:00
|
|
|
declarations: [CLNChannelLookupComponent],
|
2021-08-28 21:03:18 +00:00
|
|
|
imports: [
|
|
|
|
SharedModule,
|
2022-05-01 17:35:20 +00:00
|
|
|
StoreModule.forRoot({ root: RootReducer, lnd: LNDReducer, cln: CLNReducer, ecl: ECLReducer })
|
2021-08-28 21:03:18 +00:00
|
|
|
]
|
|
|
|
}).
|
|
|
|
compileComponents();
|
2019-09-07 21:31:32 +00:00
|
|
|
}));
|
|
|
|
|
|
|
|
beforeEach(() => {
|
2022-05-01 17:35:20 +00:00
|
|
|
fixture = TestBed.createComponent(CLNChannelLookupComponent);
|
2019-09-07 21:31:32 +00:00
|
|
|
component = fixture.componentInstance;
|
2023-12-06 04:32:05 +00:00
|
|
|
component.lookupResult = { channels: [] };
|
2019-09-07 21:31:32 +00:00
|
|
|
fixture.detectChanges();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should create', () => {
|
|
|
|
expect(component).toBeTruthy();
|
|
|
|
});
|
2021-08-28 21:03:18 +00:00
|
|
|
|
|
|
|
afterEach(() => {
|
|
|
|
TestBed.resetTestingModule();
|
|
|
|
});
|
2019-09-07 21:31:32 +00:00
|
|
|
});
|