mirror of
https://github.com/Ride-The-Lightning/RTL
synced 2024-11-09 13:10:44 +00:00
44412d357e
LND Palemoon UX extension panel bug Cookie file not generated for BTCPayServer #990 ECL Missing fee calculation on Dashboard #975 CLT channel filter on alias bug fix #982 CLightning to Code Lightning #997 Added Infographics for Channel Rebalance CLN Base fee zero bug fix #987 ECL Query Route bug fix #1007 LND faster initial load LND Transactions Lookup #1002 LND Bug fix for Routing Fee Calculation
57 lines
2.1 KiB
TypeScript
57 lines
2.1 KiB
TypeScript
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 { ECLPeersComponent } from './peers.component';
|
|
import { mockCLEffects, mockDataService, mockLoggerService, mockECLEffects, mockLNDEffects, mockRTLEffects } from '../../../shared/test-helpers/mock-services';
|
|
import { EffectsModule } from '@ngrx/effects';
|
|
import { RTLEffects } from '../../../store/rtl.effects';
|
|
import { SharedModule } from '../../../shared/shared.module';
|
|
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
|
|
import { DataService } from '../../../shared/services/data.service';
|
|
|
|
describe('ECLPeersComponent', () => {
|
|
let component: ECLPeersComponent;
|
|
let fixture: ComponentFixture<ECLPeersComponent>;
|
|
|
|
beforeEach(waitForAsync(() => {
|
|
TestBed.configureTestingModule({
|
|
declarations: [ECLPeersComponent],
|
|
imports: [
|
|
BrowserAnimationsModule,
|
|
SharedModule,
|
|
StoreModule.forRoot({ root: RootReducer, lnd: LNDReducer, cln: CLNReducer, ecl: ECLReducer }),
|
|
EffectsModule.forRoot([mockRTLEffects, mockLNDEffects, mockCLEffects, mockECLEffects])
|
|
],
|
|
providers: [
|
|
CommonService,
|
|
{ provide: LoggerService, useClass: mockLoggerService },
|
|
{ provide: DataService, useClass: mockDataService },
|
|
{ provide: RTLEffects, useClass: mockRTLEffects }
|
|
]
|
|
|
|
}).
|
|
compileComponents();
|
|
}));
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(ECLPeersComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
|
|
afterEach(() => {
|
|
TestBed.resetTestingModule();
|
|
});
|
|
});
|