2021-08-28 21:03:18 +00:00
|
|
|
import { waitForAsync, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
|
2022-10-17 23:58:21 +00:00
|
|
|
import { RouterTestingModule } from '@angular/router/testing';
|
2021-08-28 21:03:18 +00:00
|
|
|
import { StoreModule } from '@ngrx/store';
|
|
|
|
import { CommonService } from '../../../shared/services/common.service';
|
|
|
|
import { DataService } from '../../../shared/services/data.service';
|
|
|
|
import { LoggerService } from '../../../shared/services/logger.service';
|
|
|
|
import { mockDataService, mockLoggerService } from '../../../shared/test-helpers/mock-services';
|
|
|
|
import { SharedModule } from '../../../shared/shared.module';
|
2020-03-16 15:57:57 +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 { CLNUTXOTablesComponent } from './utxo-tables.component';
|
|
|
|
import { CLNOnChainUtxosComponent } from './utxos/utxos.component';
|
2020-03-16 15:57:57 +00:00
|
|
|
|
2022-05-01 17:35:20 +00:00
|
|
|
describe('CLNUTXOTablesComponent', () => {
|
|
|
|
let component: CLNUTXOTablesComponent;
|
|
|
|
let fixture: ComponentFixture<CLNUTXOTablesComponent>;
|
2020-03-16 15:57:57 +00:00
|
|
|
|
2021-08-28 21:03:18 +00:00
|
|
|
beforeEach(waitForAsync(() => {
|
2020-03-16 15:57:57 +00:00
|
|
|
TestBed.configureTestingModule({
|
2022-05-01 17:35:20 +00:00
|
|
|
declarations: [CLNUTXOTablesComponent, CLNOnChainUtxosComponent],
|
2021-08-28 21:03:18 +00:00
|
|
|
imports: [
|
|
|
|
BrowserAnimationsModule,
|
|
|
|
SharedModule,
|
2022-10-17 23:58:21 +00:00
|
|
|
RouterTestingModule,
|
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
|
|
|
],
|
|
|
|
providers: [
|
|
|
|
CommonService,
|
|
|
|
{ provide: LoggerService, useClass: mockLoggerService },
|
|
|
|
{ provide: DataService, useClass: mockDataService }
|
|
|
|
]
|
|
|
|
}).
|
|
|
|
compileComponents();
|
2020-03-16 15:57:57 +00:00
|
|
|
}));
|
|
|
|
|
|
|
|
beforeEach(() => {
|
2022-05-01 17:35:20 +00:00
|
|
|
fixture = TestBed.createComponent(CLNUTXOTablesComponent);
|
2020-03-16 15:57:57 +00:00
|
|
|
component = fixture.componentInstance;
|
|
|
|
fixture.detectChanges();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should create', () => {
|
|
|
|
expect(component).toBeTruthy();
|
|
|
|
});
|
2021-08-28 21:03:18 +00:00
|
|
|
|
|
|
|
afterEach(() => {
|
|
|
|
TestBed.resetTestingModule();
|
|
|
|
});
|
2020-03-16 15:57:57 +00:00
|
|
|
});
|